testingmachine 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/generators/{tm → testing_machine}/feature_generator.rb +2 -2
- data/lib/generators/{tm → testing_machine}/install_generator.rb +2 -2
- data/lib/generators/{tm → testing_machine}/templates/config.yml +0 -0
- data/lib/generators/{tm → testing_machine}/templates/feature_spec.rb +0 -0
- data/lib/generators/{tm → testing_machine}/templates/helper.rb +0 -0
- data/lib/generators/{tm → testing_machine}/templates/table.table +0 -0
- metadata +9 -9
@@ -1,13 +1,13 @@
|
|
1
1
|
require 'rails/generators'
|
2
2
|
|
3
|
-
module
|
3
|
+
module TestingMachine
|
4
4
|
class FeatureGenerator < Rails::Generators::Base
|
5
5
|
source_root File.join(File.dirname(__FILE__), 'templates')
|
6
6
|
|
7
7
|
desc <<-DESC
|
8
8
|
Description:
|
9
9
|
Sets up WebTM for your Rails project.
|
10
|
-
`rails generate
|
10
|
+
`rails generate testing_machine:feature feature_name dir/feature2_name`
|
11
11
|
DESC
|
12
12
|
|
13
13
|
def manifest
|
@@ -1,13 +1,13 @@
|
|
1
1
|
require 'rails/generators'
|
2
2
|
|
3
|
-
module
|
3
|
+
module TestingMachine
|
4
4
|
class InstallGenerator < Rails::Generators::Base
|
5
5
|
source_root File.join(File.dirname(__FILE__), 'templates')
|
6
6
|
|
7
7
|
desc <<-DESC
|
8
8
|
Description:
|
9
9
|
Sets up WebTM for your Rails project.
|
10
|
-
`rails generate
|
10
|
+
`rails generate testing_machine:install`
|
11
11
|
DESC
|
12
12
|
|
13
13
|
def manifest
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testingmachine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 9
|
10
|
+
version: 0.1.9
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jinzhu
|
@@ -57,12 +57,12 @@ extra_rdoc_files:
|
|
57
57
|
- README.rdoc
|
58
58
|
- TODO
|
59
59
|
files:
|
60
|
-
- lib/generators/
|
61
|
-
- lib/generators/
|
62
|
-
- lib/generators/
|
63
|
-
- lib/generators/
|
64
|
-
- lib/generators/
|
65
|
-
- lib/generators/
|
60
|
+
- lib/generators/testing_machine/feature_generator.rb
|
61
|
+
- lib/generators/testing_machine/install_generator.rb
|
62
|
+
- lib/generators/testing_machine/templates/config.yml
|
63
|
+
- lib/generators/testing_machine/templates/feature_spec.rb
|
64
|
+
- lib/generators/testing_machine/templates/helper.rb
|
65
|
+
- lib/generators/testing_machine/templates/table.table
|
66
66
|
- lib/testingmachine.rb
|
67
67
|
- lib/tm.rb
|
68
68
|
- lib/tm/configuration.rb
|