ruby_raider 1.0.6 → 1.0.7

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,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37514d703c782feaf55aabcc935effc30d17dee25ab486cc04fdaf97ab864bd8
4
- data.tar.gz: 2576a6852e503e1b635064f0e4681da7cabffed52ef9c3c5ed8acab795a88781
3
+ metadata.gz: c4393e905f2a6b15c054654eda7c939033c12880502b5ba07b311b0e3c0d94a8
4
+ data.tar.gz: 21cf8d0ffdf595858bd99bb563e24a30c597120a4aa3a0b0b30bee0c62d060b3
5
5
  SHA512:
6
- metadata.gz: 0405d1ae1549297808c678ab4825a016f72ef711701933d93eb6e831abf4c07c4353315d8d91bdb7f4b0bd18aade2478bbed70eed568bd96a6d1cb7cddf44e33
7
- data.tar.gz: ba6cb7a42c435f72052dd8db761a78e0bc56da8f47bc962f36d4ba1bc7146e53c0f159b4b4bd03bec34e998587a64935b19a9eaa02fd36743991540afedfa8b2
6
+ metadata.gz: 9a554f59b635bc5c64ceaf14d07458118a61dc58a7f41a523ada89e75de250dc767e781b98b356029ed6132438d1418cd48bb9ee9accc0c918e3e098f49cb08c
7
+ data.tar.gz: 730310b849ad820687ca41478fd6b9609cd05cf5c2d87cbb7f4922660bba34883e6e3a0bbfa6c1b53f9a72c7a331cd4a1c33dfcfbe9f78ce470d3c34a3184b55
@@ -1,6 +1,10 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem 'activesupport'
4
+ <% if mobile? %>
5
+ gem 'appium_lib'
6
+ gem 'appium_console'
7
+ <% end %>
4
8
  <%- if cucumber? -%>
5
9
  gem 'allure-cucumber', '~> 2.24.0'
6
10
  <%- else -%>
@@ -30,4 +34,9 @@ gem 'rubocop'
30
34
  gem 'rubocop-rspec'
31
35
  <%- end -%>
32
36
  gem 'ruby_raider', '~> 1.0.0'
33
- <%= ERB.new(File.read(File.expand_path('./partials/automation_gems.tt', __dir__))).result(binding).strip! %>
37
+ <%- if selenium_based? %>
38
+ gem 'selenium-webdriver'
39
+ <%- end -%>
40
+ <%- if watir? -%>
41
+ gem 'watir'
42
+ <%- end -%>
@@ -12,6 +12,7 @@ browser_arguments:
12
12
  - no-sandbox
13
13
  - disable-dev-shm-usage
14
14
  - ignore-certificate-errors
15
+ - search-engine-choice-country
15
16
  :firefox:
16
17
  - acceptInsecureCerts
17
18
  - no-sandbox
data/lib/version CHANGED
@@ -1 +1,2 @@
1
- 1.0.6
1
+ 1.0.7
2
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_raider
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Agustin Pequeno
@@ -205,7 +205,6 @@ files:
205
205
  - lib/generators/templates/common/config.tt
206
206
  - lib/generators/templates/common/gemfile.tt
207
207
  - lib/generators/templates/common/git_ignore.tt
208
- - lib/generators/templates/common/partials/automation_gems.tt
209
208
  - lib/generators/templates/common/partials/mobile_config.tt
210
209
  - lib/generators/templates/common/partials/web_config.tt
211
210
  - lib/generators/templates/common/rakefile.tt
@@ -1,10 +0,0 @@
1
- <% case automation
2
- when 'watir' %>
3
- gem 'selenium-webdriver'
4
- gem 'watir'
5
- <% when selenium_based? %>
6
- gem 'selenium-webdriver'
7
- <% when mobile? %>
8
- gem 'appium_lib'
9
- gem 'appium_console'
10
- <% end %>