bddfire 1.1.5 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/LICENSE +21 -3
- data/README.markdown +25 -0
- data/lib/bddfire/required_files.rb +9 -0
- data/lib/bddfire/ui_steps.rb +11 -0
- data/lib/bddfire/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NDJkMGNkYTE2Y2M5ZDlmYjY5MmI1OTllODg2YmRjZDgzOTE1YjRjYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZjQwODVhMWQ0MGJlMGNjZmZkMzA1YjUwNTA1ZDczMWE5ZGI2MWJjMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTQyOGJkYWFjZTZhYzc3NTMxODRhZDBhM2IxMGFmMjZkNzUwNzdiMDM0YzBk
|
10
|
+
YTJhMWNjMGI2YTExOTQ2ZWYwZTRlMGJiZTlmY2RmYmY3YTJjMzdjNWQyM2Iw
|
11
|
+
NzRiYmRhM2M5N2JlNmY2NjYxMjNiMTA0MDhkZjk4NGU0YWIzNTQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NDQ3ZWU1ZTBiZDcxZTc1NGIwNDY5MmFhMTgyYjBhY2NmY2RmYjQxYmQ4MmEw
|
14
|
+
ZmRjN2M1MjA1MmIxNzIwYTI3ZjA5ZjdlMDZiMzUyMDBkNDk1ZDdiYjQ2MDVh
|
15
|
+
YzM3YWViNmUxZThiMTc5MmQ0NGRmYTRlNmQ3ZTU3NzBkOTU4NzQ=
|
data/LICENSE
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
The MIT License (MIT)
|
2
|
+
Copyright © 2014 Shashikant Jagtap, http://shashikantjagtap.net
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
a copy of this software and associated documentation files (the
|
6
|
+
"Software"), to deal in the Software without restriction, including
|
7
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be
|
13
|
+
included in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.markdown
CHANGED
@@ -37,3 +37,28 @@ Output will look like this:
|
|
37
37
|
create features/support/helpers.rb
|
38
38
|
create .gitignore
|
39
39
|
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
## LICENSE
|
44
|
+
|
45
|
+
Copyright © 2014 Shashikant Jagtap, http://shashikantjagtap.net
|
46
|
+
|
47
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
48
|
+
a copy of this software and associated documentation files (the
|
49
|
+
"Software"), to deal in the Software without restriction, including
|
50
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
51
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
52
|
+
permit persons to whom the Software is furnished to do so, subject to
|
53
|
+
the following conditions:
|
54
|
+
|
55
|
+
The above copyright notice and this permission notice shall be
|
56
|
+
included in all copies or substantial portions of the Software.
|
57
|
+
|
58
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
59
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
60
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
61
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
62
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
63
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
64
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require_relative 'required_files'
|
2
|
+
|
3
|
+
Given(/^I am on the "(.*?)"$/) do |url|
|
4
|
+
session = Capybara::Session.new(:poltergeist)
|
5
|
+
session.visit(url)
|
6
|
+
end
|
7
|
+
|
8
|
+
Then(/^I should see the text "(.*?)"$/) do |text|
|
9
|
+
session = Capybara::Session.new(:poltergeist)
|
10
|
+
session.page.should have_content(text)
|
11
|
+
end
|
data/lib/bddfire/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bddfire
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shashikant Jagtap
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -188,7 +188,9 @@ files:
|
|
188
188
|
- lib/bddfire.rb
|
189
189
|
- lib/bddfire/app.rb
|
190
190
|
- lib/bddfire/extensions/string.rb
|
191
|
+
- lib/bddfire/required_files.rb
|
191
192
|
- lib/bddfire/tasks.rb
|
193
|
+
- lib/bddfire/ui_steps.rb
|
192
194
|
- lib/bddfire/version.rb
|
193
195
|
- scaffold/.relish
|
194
196
|
- scaffold/.rubocop.yml
|