bddfire 1.6.2 → 1.6.3
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
|
-
|
4
|
+
NDFhZDUyMTExMTA5ODdmZmJkMDMyZmY5YzNjZGQxNmJlNGY1Y2JhOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YjNiYTU3NTNhNjk5NzE5OWUwMjdmNjJlZTFkM2UxMDVjYjZkZmFiNA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YmY1MTUwMmFmNTNiZmUwYmRlYjE0ZTlmYTUzMzkzZTVkNjU2ZjgyZTAxOWE5
|
10
|
+
NzI5OGM4OWRjODk3ZjUzNzQyNjBjN2FhMGJhZjM1ZGMzZGYzOGViMDFhMjM2
|
11
|
+
NGQyMzBjYzUzMGJhMjg1M2VmMjUwZDAzOTU1YjI3MzA5ODU3ZDU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
M2NmNzVhZTA4NjgyYjFiMmUyMmRiMWYwMzg3NDFhOWY2ODYyNGZmZDNmYWQz
|
14
|
+
ZTVmMGQ5ZWQ0OWUyMzE2YzQxNDFmOGY1ZDlmY2Y4NWIxYjU1ZTM0ZmIzNWE3
|
15
|
+
YWJhN2VlZTZlNjcyZTI1ZmI1MzNkNGUyMzI0YWM0MThjN2ZiYzg=
|
data/lib/bddfire/version.rb
CHANGED
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'net/https'
|
2
|
+
require_relative 'required_files'
|
3
|
+
require "Capybara/cucumber"
|
4
|
+
require "rspec"
|
5
|
+
require 'selenium-webdriver'
|
6
|
+
|
7
|
+
|
8
|
+
Given(/^I am on "(.*?)"$/) do |url|
|
9
|
+
visit(url)
|
10
|
+
end
|
11
|
+
|
12
|
+
When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
|
13
|
+
fill_in element, with: text
|
14
|
+
|
15
|
+
Then(/^I should see "(.*?)"$/) do |text|
|
16
|
+
page.should have_content text
|
17
|
+
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.6.
|
4
|
+
version: 1.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shashikant Jagtap
|
@@ -147,8 +147,12 @@ files:
|
|
147
147
|
- lib/bddfire.rb
|
148
148
|
- lib/bddfire/app.rb
|
149
149
|
- lib/bddfire/extensions/string.rb
|
150
|
+
- lib/bddfire/mobile/mobile_steps.rb
|
151
|
+
- lib/bddfire/mobile/required_files.rb
|
150
152
|
- lib/bddfire/tasks.rb
|
151
153
|
- lib/bddfire/version.rb
|
154
|
+
- lib/bddfire/web/required_files.rb
|
155
|
+
- lib/bddfire/web/web_steps.rb
|
152
156
|
- scaffold/.relish
|
153
157
|
- scaffold/.rubocop.yml
|
154
158
|
- scaffold/.ruby-version
|