bddfire 1.0.4 → 1.0.5

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZjliYzNmMWFiNGYyNDhjMzM4MGEyYmY5MjZhZjgzMDVhNDkyMzFiMw==
4
+ ZjQ2ZTg4N2JkYjhiYTJmZWUyOWNiYTY1YTQ1OWJhNzlmMmJiZWE1MQ==
5
5
  data.tar.gz: !binary |-
6
- ODEwYzFkZDdjODRiNDcwNTc5OWY2NDY4ZTM4YTUxM2YzMTAzOTE4Zg==
6
+ Y2NmYWIzNWE2MGFiNjM2YmJlNGQ1ZTlkYTA4ZDdlNDcyMjlhNWZkNQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MzMyYWJkNTgyZjExNTBjNjc5ODk0ODllNjkyYTZlY2ExYmYyMzg3NzNkNmYx
10
- ZDc0ZjM0MTdmM2I2ODZlYmY5N2NjOWE3YjVjMWQzMjZhMmZjN2QzNjhhNjhk
11
- NDc4YzQ1YTZlMWUxZWE0ODg0ODkzOWU3ODgwZjZhMmEzNTA2YWY=
9
+ YzE5MmRmNTcwNWY4ZWM2ZjVkOWJmMjdlODZkMTk0NjRkYWE5MTcxYmM3NjMy
10
+ NDRmNGU4OTM1Yzg5MzQ4ZGE2ZGFlNDBjNzEzMzc5ODg1Mzk4MDIwM2M0OWZi
11
+ MWVhZThjOWE1OWM3NTZlYTgyYzRkZjVhYzRhYTdjNTZhZTdhYmI=
12
12
  data.tar.gz: !binary |-
13
- ZDVjMmJiY2Q0ZmJjZmM4OTk2MjIwNjZkY2I1NGUyNTkyNjJhMThkMjNlOTRi
14
- MzQ4NTI3NjgwM2M3ODhiZTY4OWYwZTI5NTY3MmNhODhkNGY4NzZhODdmNThi
15
- MzU1YTM4MTAwZTEwNDhjNmFjNzJmODhjOWI0MmY2MWQ5ODFiMmY=
13
+ ODEyMGZkNjdkOGY4Yjc4OWEwNDc4Mjk4NWI2OWY3ODZiN2Q4Y2FjMWEwYjFl
14
+ Yjg4NWM4NTIyMWJhMjk1NTM3ZDRlMWU0ZmMzYzk5YWRkOTI5MzI3YzFiYTcz
15
+ MGY2Y2Q0OWVhYzAxYjRmOTc5MGYyMWI2Y2UyMDFlM2MxYTc0OWE=
data/README.markdown CHANGED
@@ -13,7 +13,7 @@ In your project's root directory...
13
13
 
14
14
  ### Cucumber
15
15
 
16
- $ bddfire cucumber
16
+ $ bddfire fire_cucumber
17
17
 
18
18
  This will create a `features` directory with all the files you need to hit the
19
19
 
data/bddfire.gemspec CHANGED
@@ -10,8 +10,9 @@ Gem::Specification.new do |s|
10
10
  s.email = ["shashikant.jagtap@aol.co.uk"]
11
11
  s.homepage = "https://github.com/Shashikant86/bddfire"
12
12
  s.license = 'MIT'
13
- s.summary = %q{Generate template project for the cucumber BDD with related tools}
14
- s.description = %q{Blue print for the cucumber, capybara, cuke_sniffer, rubocop, relish, yard and many of them libraries}
13
+ s.required_ruby_version = '>= 1.9.3'
14
+ s.summary = %q{Get started with BDD, Cucumber and friends in a minute}
15
+ s.description = %q{BDD Blue print for the cucumber, capybara, selenium, poltergeist, cuke_sniffer, rubocop, relish, yard and many more awesome libraries}
15
16
  s.add_dependency "thor"
16
17
  s.add_development_dependency "rake"
17
18
  s.add_development_dependency "rspec"
@@ -27,4 +28,5 @@ Gem::Specification.new do |s|
27
28
  s.test_files = `git ls-files -- {features}/*`.split("\n")
28
29
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
29
30
  s.require_paths = ["lib"]
31
+ s.post_install_message = "Thanks for installing BDDfire gem. More exciting BDD stuff on the way. Stay Tuned !"
30
32
  end
data/lib/bddfire/app.rb CHANGED
@@ -14,8 +14,8 @@ module BDDfire
14
14
  say BDDfire::VERSION
15
15
  end
16
16
 
17
- desc "cucumber-generate", "Set up cucumber"
18
- def cucumber
17
+ desc "fire_cucumber", "Set up cucumber"
18
+ def fire_cucumber
19
19
  genarate_gemfile
20
20
  insert_gem 'cucumber'
21
21
  insert_gem 'capybara'
@@ -46,8 +46,8 @@ module BDDfire
46
46
  append_file ".gitignore", ".travis.yml\n"
47
47
  end
48
48
 
49
- desc "rspec", "Set up rspec"
50
- def rspec
49
+ desc "fire_rspec", "Set up rspec"
50
+ def fire_rspec
51
51
  genarate_gemfile
52
52
  insert_gem 'rspec'
53
53
  generate_rakefile
@@ -55,8 +55,8 @@ module BDDfire
55
55
  copy_file "spec/spec_helper.rb"
56
56
  end
57
57
 
58
- desc "yard", "Set up Yard"
59
- def yard
58
+ desc "generate_yard", "Set up Yard"
59
+ def generate_yard
60
60
  genarate_gemfile
61
61
  insert_gem 'yard'
62
62
 
@@ -1,3 +1,3 @@
1
1
  module BDDfire
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  end
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
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shashikant Jagtap
@@ -164,8 +164,8 @@ dependencies:
164
164
  - - ! '>='
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0'
167
- description: Blue print for the cucumber, capybara, cuke_sniffer, rubocop, relish,
168
- yard and many of them libraries
167
+ description: BDD Blue print for the cucumber, capybara, selenium, poltergeist, cuke_sniffer,
168
+ rubocop, relish, yard and many more awesome libraries
169
169
  email:
170
170
  - shashikant.jagtap@aol.co.uk
171
171
  executables:
@@ -210,7 +210,8 @@ homepage: https://github.com/Shashikant86/bddfire
210
210
  licenses:
211
211
  - MIT
212
212
  metadata: {}
213
- post_install_message:
213
+ post_install_message: Thanks for installing BDDfire gem. More exciting BDD stuff on
214
+ the way. Stay Tuned !
214
215
  rdoc_options: []
215
216
  require_paths:
216
217
  - lib
@@ -218,7 +219,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
218
219
  requirements:
219
220
  - - ! '>='
220
221
  - !ruby/object:Gem::Version
221
- version: '0'
222
+ version: 1.9.3
222
223
  required_rubygems_version: !ruby/object:Gem::Requirement
223
224
  requirements:
224
225
  - - ! '>='
@@ -229,6 +230,6 @@ rubyforge_project:
229
230
  rubygems_version: 2.1.4
230
231
  signing_key:
231
232
  specification_version: 4
232
- summary: Generate template project for the cucumber BDD with related tools
233
+ summary: Get started with BDD, Cucumber and friends in a minute
233
234
  test_files: []
234
235
  has_rdoc: