ruby_raider 1.0.5 → 1.0.6

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: 52f6a131eab6f56640436342a8453762e227972dc58579425d3fe5a20bb6c268
4
- data.tar.gz: 26edb7b40ffc57c7b5b49743949d424f5957c1bb466906a12fa4750b152edf97
3
+ metadata.gz: 37514d703c782feaf55aabcc935effc30d17dee25ab486cc04fdaf97ab864bd8
4
+ data.tar.gz: 2576a6852e503e1b635064f0e4681da7cabffed52ef9c3c5ed8acab795a88781
5
5
  SHA512:
6
- metadata.gz: 64954474082ea74b3888d362aa9cfb6cbd528ad82a67fbffcc7265f90297ff57a981480dd5cb3d86d270caa0436dd81eadfcd7c847b0b7f1c73f896aca0a6a25
7
- data.tar.gz: ebd974a8a13df97e5b426acd0d7f153447b0a72eeaa1f9bd9f9fae5982133f97fbe0f40c3dfc820bdb0f70f310b1c4a66ba2f659114e600caa3069b9be928d27
6
+ metadata.gz: 0405d1ae1549297808c678ab4825a016f72ef711701933d93eb6e831abf4c07c4353315d8d91bdb7f4b0bd18aade2478bbed70eed568bd96a6d1cb7cddf44e33
7
+ data.tar.gz: ba6cb7a42c435f72052dd8db761a78e0bc56da8f47bc962f36d4ba1bc7146e53c0f159b4b4bd03bec34e998587a64935b19a9eaa02fd36743991540afedfa8b2
data/.gitignore CHANGED
@@ -1,4 +1,6 @@
1
1
  ruby_raider-*.gem
2
2
  .idea/
3
3
  ruby_raider.iml
4
- Gemfile.lock
4
+ Gemfile.lock
5
+ .DS_Store
6
+ lib/.DS_Store
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.3.0
@@ -1,15 +1,11 @@
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 %>
8
4
  <%- if cucumber? -%>
9
- gem 'allure-cucumber'
5
+ gem 'allure-cucumber', '~> 2.24.0'
10
6
  <%- else -%>
11
- gem 'allure-rspec'
12
- gem 'allure-ruby-commons'
7
+ gem 'allure-rspec', '~> 2.24.0'
8
+ gem 'allure-ruby-commons', '~> 2.24.0'
13
9
  <%- end -%>
14
10
  <%- if axe? -%>
15
11
  gem 'axe-core-rspec'
@@ -33,10 +29,5 @@ gem 'rubocop'
33
29
  <%- if rspec? -%>
34
30
  gem 'rubocop-rspec'
35
31
  <%- end -%>
36
- gem 'ruby_raider', '~> 1.0.4'
37
- <%- if selenium_based? %>
38
- gem 'selenium-webdriver'
39
- <%- end -%>
40
- <%- if watir? -%>
41
- gem 'watir'
42
- <%- end -%>
32
+ gem 'ruby_raider', '~> 1.0.0'
33
+ <%= ERB.new(File.read(File.expand_path('./partials/automation_gems.tt', __dir__))).result(binding).strip! %>
@@ -0,0 +1,10 @@
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 %>
@@ -12,7 +12,6 @@ browser_arguments:
12
12
  - no-sandbox
13
13
  - disable-dev-shm-usage
14
14
  - ignore-certificate-errors
15
- - search-engine-choice-country
16
15
  :firefox:
17
16
  - acceptInsecureCerts
18
17
  - no-sandbox
data/lib/version CHANGED
@@ -1 +1 @@
1
- 1.0.5
1
+ 1.0.6
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_raider
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Agustin Pequeno
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-10 00:00:00.000000000 Z
11
+ date: 2024-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -142,6 +142,7 @@ files:
142
142
  - ".gitignore"
143
143
  - ".reek.yml"
144
144
  - ".rubocop.yml"
145
+ - ".ruby-version"
145
146
  - CODE_OF_CONDUCT.md
146
147
  - CONTRIBUTING.md
147
148
  - Gemfile
@@ -204,6 +205,7 @@ files:
204
205
  - lib/generators/templates/common/config.tt
205
206
  - lib/generators/templates/common/gemfile.tt
206
207
  - lib/generators/templates/common/git_ignore.tt
208
+ - lib/generators/templates/common/partials/automation_gems.tt
207
209
  - lib/generators/templates/common/partials/mobile_config.tt
208
210
  - lib/generators/templates/common/partials/web_config.tt
209
211
  - lib/generators/templates/common/rakefile.tt