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 +8 -8
- data/README.markdown +1 -1
- data/bddfire.gemspec +4 -2
- data/lib/bddfire/app.rb +6 -6
- data/lib/bddfire/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZjQ2ZTg4N2JkYjhiYTJmZWUyOWNiYTY1YTQ1OWJhNzlmMmJiZWE1MQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
Y2NmYWIzNWE2MGFiNjM2YmJlNGQ1ZTlkYTA4ZDdlNDcyMjlhNWZkNQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzE5MmRmNTcwNWY4ZWM2ZjVkOWJmMjdlODZkMTk0NjRkYWE5MTcxYmM3NjMy
|
|
10
|
+
NDRmNGU4OTM1Yzg5MzQ4ZGE2ZGFlNDBjNzEzMzc5ODg1Mzk4MDIwM2M0OWZi
|
|
11
|
+
MWVhZThjOWE1OWM3NTZlYTgyYzRkZjVhYzRhYTdjNTZhZTdhYmI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ODEyMGZkNjdkOGY4Yjc4OWEwNDc4Mjk4NWI2OWY3ODZiN2Q4Y2FjMWEwYjFl
|
|
14
|
+
Yjg4NWM4NTIyMWJhMjk1NTM3ZDRlMWU0ZmMzYzk5YWRkOTI5MzI3YzFiYTcz
|
|
15
|
+
MGY2Y2Q0OWVhYzAxYjRmOTc5MGYyMWI2Y2UyMDFlM2MxYTc0OWE=
|
data/README.markdown
CHANGED
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.
|
|
14
|
-
s.
|
|
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 "
|
|
18
|
-
def
|
|
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 "
|
|
50
|
-
def
|
|
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 "
|
|
59
|
-
def
|
|
58
|
+
desc "generate_yard", "Set up Yard"
|
|
59
|
+
def generate_yard
|
|
60
60
|
genarate_gemfile
|
|
61
61
|
insert_gem 'yard'
|
|
62
62
|
|
data/lib/bddfire/version.rb
CHANGED
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.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,
|
|
168
|
-
yard and many
|
|
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:
|
|
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:
|
|
233
|
+
summary: Get started with BDD, Cucumber and friends in a minute
|
|
233
234
|
test_files: []
|
|
234
235
|
has_rdoc:
|