bddfire 1.0.7 → 1.0.8
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.
- checksums.yaml +8 -8
- data/README.markdown +18 -0
- data/lib/bddfire/app.rb +5 -5
- data/lib/bddfire/version.rb +1 -1
- data/scaffold/.relish +2 -0
- data/scaffold/.rubocop.yml +43 -0
- data/scaffold/.ruby-version +1 -0
- data/scaffold/.travis.yml +16 -0
- data/scaffold/cucumber.yml +6 -0
- metadata +6 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZGZkYzlmYjU3ODhlNmFlNjc1ZWE5YmRiYTU5ZmRkOTYxN2E4ZDNiNA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZTM4NWEyNzIxNWJjMjlmOGEyMjRlZjYxYjI1ZTgxNmI3NzA0ODI2OA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YTNkZTQwZTkxOGMzOGNlODU4ZmRkNDc0NGExMGQwZWM4NjhiZjllMTMyZmEw
|
10
|
+
MWE2NWY1YzNiNTRjNjZiMDcwYTE1YTQyN2I1ZjI0Y2E3N2E1ZjJiNjIxOTRh
|
11
|
+
ZjJiYTgzMDc2NjhiMzdiMGNkODgzOWE4NDgyNTk4M2Y1YjQ2NDE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YmFlMTRjMWY4ZWVlN2RkYTljYmMwODZkYzE3Yzg5NTJkMjNkNjczZWViMmVk
|
14
|
+
MjQxZjU5M2NiNjgyM2JjZGZhMzI0MWVkY2M4NWU1ZDk0Mzc1ODA5NmQ1NzBh
|
15
|
+
YTIyYThjOTJkMTAzM2JhZGE0NDJmYzVmNmJlZmI4YzI2ZGE3ZDg=
|
data/README.markdown
CHANGED
@@ -15,7 +15,25 @@ In your project's root directory...
|
|
15
15
|
|
16
16
|
$ bddfire fire_cucumber
|
17
17
|
|
18
|
+
|
18
19
|
This will create a `features` directory with all the files you need to hit the
|
19
20
|
|
20
21
|
If you don't already have a `Gemfile` or `Rakefile`, one will be created.
|
21
22
|
|
23
|
+
Output will look like this:
|
24
|
+
|
25
|
+
append Gemfile
|
26
|
+
append Rakefile
|
27
|
+
identical features/step_definitions/{directoryname}_steps.rb
|
28
|
+
identical features/try.feature
|
29
|
+
identical config_files/cucumber.yml
|
30
|
+
identical config_files/.rubocop.yml
|
31
|
+
create config_files/.ruby-version
|
32
|
+
create config_files/.travis.yml
|
33
|
+
create config_files/.relish
|
34
|
+
create features/support/env.rb
|
35
|
+
create features/support/hooks.rb
|
36
|
+
create features/support/responsive.rb
|
37
|
+
create features/support/helpers.rb
|
38
|
+
create .gitignore
|
39
|
+
|
data/lib/bddfire/app.rb
CHANGED
@@ -32,11 +32,11 @@ module BDDfire
|
|
32
32
|
add_task BDDfire::Tasks.rubocop
|
33
33
|
add_file "features/step_definitions/#{project_name}_steps.rb"
|
34
34
|
add_file "features/#{project_name}.feature"
|
35
|
-
copy_file "
|
36
|
-
copy_file "
|
37
|
-
copy_file "
|
38
|
-
copy_file "
|
39
|
-
copy_file "
|
35
|
+
copy_file "cucumber.yml"
|
36
|
+
copy_file ".rubocop.yml"
|
37
|
+
copy_file ".ruby-version"
|
38
|
+
copy_file ".travis.yml"
|
39
|
+
copy_file ".relish"
|
40
40
|
copy_file "features/support/env.rb"
|
41
41
|
copy_file "features/support/hooks.rb"
|
42
42
|
copy_file "features/support/responsive.rb"
|
data/lib/bddfire/version.rb
CHANGED
data/scaffold/.relish
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
AllCops:
|
2
|
+
Include:
|
3
|
+
- Gemfile
|
4
|
+
- Rakefile
|
5
|
+
Exclude:
|
6
|
+
- bin/**/*
|
7
|
+
- vendor/**/*
|
8
|
+
- tmp/**/*
|
9
|
+
|
10
|
+
CollectionMethods:
|
11
|
+
Enabled: false
|
12
|
+
|
13
|
+
Encoding:
|
14
|
+
Enabled: false
|
15
|
+
|
16
|
+
LineLength:
|
17
|
+
Max: 119
|
18
|
+
|
19
|
+
Documentation:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
CaseIndentation:
|
23
|
+
Enabled: false
|
24
|
+
|
25
|
+
DotPosition:
|
26
|
+
Enabled: false
|
27
|
+
|
28
|
+
MethodLength:
|
29
|
+
CountComments: false
|
30
|
+
Max: 20
|
31
|
+
|
32
|
+
Blocks:
|
33
|
+
Enabled: false
|
34
|
+
Enabled: false
|
35
|
+
|
36
|
+
AlignParameters:
|
37
|
+
Enabled: false
|
38
|
+
|
39
|
+
IfUnlessModifier:
|
40
|
+
Enabled: false
|
41
|
+
|
42
|
+
TrailingComma:
|
43
|
+
Enabled: false
|
@@ -0,0 +1 @@
|
|
1
|
+
ruby-1.9.3
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bddfire
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shashikant Jagtap
|
@@ -190,11 +190,16 @@ files:
|
|
190
190
|
- lib/bddfire/extensions/string.rb
|
191
191
|
- lib/bddfire/tasks.rb
|
192
192
|
- lib/bddfire/version.rb
|
193
|
+
- scaffold/.relish
|
194
|
+
- scaffold/.rubocop.yml
|
195
|
+
- scaffold/.ruby-version
|
196
|
+
- scaffold/.travis.yml
|
193
197
|
- scaffold/config_files/.relish
|
194
198
|
- scaffold/config_files/.rubocop.yml
|
195
199
|
- scaffold/config_files/.ruby-version
|
196
200
|
- scaffold/config_files/.travis.yml
|
197
201
|
- scaffold/config_files/cucumber.yml
|
202
|
+
- scaffold/cucumber.yml
|
198
203
|
- scaffold/features/support/env.rb
|
199
204
|
- scaffold/features/support/helpers.erb
|
200
205
|
- scaffold/features/support/hooks.rb
|