bddfire 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MTY4MDNhM2UxMjg2MzY1YjExM2M5NDZlMzU2YzhmYTM4MWY0Zjg0Mg==
4
+ ZGZkYzlmYjU3ODhlNmFlNjc1ZWE5YmRiYTU5ZmRkOTYxN2E4ZDNiNA==
5
5
  data.tar.gz: !binary |-
6
- YTExNjZhOGZiMWNhODZlMzZiOGJjZDRmZjUyOWQ3ZTlkZmIwNzgzOA==
6
+ ZTM4NWEyNzIxNWJjMjlmOGEyMjRlZjYxYjI1ZTgxNmI3NzA0ODI2OA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NDc1ODFhMzc2MGRjMjNmN2NlMjgyMWViMmJlZWI1NGQ2NmVmOTQ2YmNkZTZk
10
- NmNiZDE0ZDFhOTY3N2RjYmYyZjc3NTI4NmEzNThjZTc0M2IwZTQ3NzRmMzg3
11
- MzBkNWQ1YWQzZGE4ZjI4ZDJmMjU0MmUwMjY5MmJjZTVhNzE1MzE=
9
+ YTNkZTQwZTkxOGMzOGNlODU4ZmRkNDc0NGExMGQwZWM4NjhiZjllMTMyZmEw
10
+ MWE2NWY1YzNiNTRjNjZiMDcwYTE1YTQyN2I1ZjI0Y2E3N2E1ZjJiNjIxOTRh
11
+ ZjJiYTgzMDc2NjhiMzdiMGNkODgzOWE4NDgyNTk4M2Y1YjQ2NDE=
12
12
  data.tar.gz: !binary |-
13
- NGY2MWFmNzM0MzZmMGEyMzJhMWEyYTkyNGI4OGE2YWI5MjVmODY4MWIyNTZi
14
- MzkwMWZlNjVlOTA5MzVhNjZlYjBjN2RmZGJkZTRhODZmZjg1ZjViMTM1NWM5
15
- ZWIxNTc2NDYzNTIxODE1OTUyMzZkNDdhNTdjZjc3YWZmNjJhOWY=
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 "config_files/cucumber.yml"
36
- copy_file "config_files/.rubocop.yml"
37
- copy_file "config_files/.ruby-version"
38
- copy_file "config_files/.travis.yml"
39
- copy_file "config_files/.relish"
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"
@@ -1,3 +1,3 @@
1
1
  module BDDfire
2
- VERSION = "1.0.7"
2
+ VERSION = "1.0.8"
3
3
  end
data/scaffold/.relish ADDED
@@ -0,0 +1,2 @@
1
+ --
2
+ access_token: your_token
@@ -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
@@ -0,0 +1,16 @@
1
+ language: ruby
2
+ cache: bundler
3
+
4
+ rvm:
5
+ - 2.0.0
6
+
7
+ before_script: 'bundle install'
8
+ script: 'bundle exec rake features'
9
+
10
+ branches:
11
+ only:
12
+ - master
13
+
14
+ notifications:
15
+ email:
16
+ - your_email
@@ -0,0 +1,6 @@
1
+ # config/cucumber.yml
2
+ ##YAML Template
3
+ ---
4
+ default: --profile html_report --profile test
5
+ html_report: --format pretty --format html --out=features_report.html
6
+ bvt: --tags @test
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.7
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