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
- NWNmNjZhNzc1NjhjNmI1NzBiOTJiNmU0M2E0Y2IzNzQ2NDI3NzI3Nw==
4
+ NDFhZDUyMTExMTA5ODdmZmJkMDMyZmY5YzNjZGQxNmJlNGY1Y2JhOQ==
5
5
  data.tar.gz: !binary |-
6
- ZDQ1ZGMyYzQ1MjdhNjBkNGYwZjI3NjE0MzViOTkyYjc5N2JjOWIwMA==
6
+ YjNiYTU3NTNhNjk5NzE5OWUwMjdmNjJlZTFkM2UxMDVjYjZkZmFiNA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NzkxYjU3OGRiMDIzODdjM2IyZTA1MTQ4YTI2Y2YwZWI2NTNlOTQyZDYzZGJj
10
- NWJkZDM4NjliYmI5MjVjMjRkYWUyMDFhNTEwNWU5YzBlMzVhOGQ0ZTYzZDQ0
11
- MzUyZWQxMzlkYTllMjNmYWFhMDJjZDFjNzZmYWUwYTQ0ZTM4YTM=
9
+ YmY1MTUwMmFmNTNiZmUwYmRlYjE0ZTlmYTUzMzkzZTVkNjU2ZjgyZTAxOWE5
10
+ NzI5OGM4OWRjODk3ZjUzNzQyNjBjN2FhMGJhZjM1ZGMzZGYzOGViMDFhMjM2
11
+ NGQyMzBjYzUzMGJhMjg1M2VmMjUwZDAzOTU1YjI3MzA5ODU3ZDU=
12
12
  data.tar.gz: !binary |-
13
- ZGJiNWU0OTMwYTBhODlhMjRlZThjYzMyOTI2MTVhNjczMGQyOTM4ZWQxY2Ew
14
- NzYxMTY2MjZmZjIwNjM2OTJiMTI0ZTI1NzQ2NTkzNTViZTUxMTQ2YTY3NWY4
15
- ZmRlZjQ1MjlkZWY3NTc2ZmFkNzVkMGYyYmJlMWEwNjEwNTBhYTc=
13
+ M2NmNzVhZTA4NjgyYjFiMmUyMmRiMWYwMzg3NDFhOWY2ODYyNGZmZDNmYWQz
14
+ ZTVmMGQ5ZWQ0OWUyMzE2YzQxNDFmOGY1ZDlmY2Y4NWIxYjU1ZTM0ZmIzNWE3
15
+ YWJhN2VlZTZlNjcyZTI1ZmI1MzNkNGUyMzI0YWM0MThjN2ZiYzg=
@@ -0,0 +1,2 @@
1
+ require 'net/https'
2
+ require_relative 'required_files'
@@ -0,0 +1,9 @@
1
+ require 'rubygems'
2
+ require 'cucumber'
3
+ require 'capybara'
4
+ require 'rspec'
5
+ require 'selenium-webdriver'
6
+ require 'open-uri'
7
+ require 'rbconfig'
8
+ require 'appium_lib'
9
+ include RbConfig
@@ -1,3 +1,3 @@
1
1
  module BDDfire
2
- VERSION = "1.6.2"
2
+ VERSION = "1.6.3"
3
3
  end
@@ -0,0 +1,9 @@
1
+ require 'rubygems'
2
+ require 'cucumber'
3
+ require 'capybara'
4
+ require 'rspec'
5
+ require 'selenium-webdriver'
6
+ require 'open-uri'
7
+ require 'rbconfig'
8
+ require 'appium_lib'
9
+ include RbConfig
@@ -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.2
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