ruby_raider 0.3.4 → 0.3.5
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 +4 -4
- data/README.md +12 -4
- data/lib/generators/templates/cucumber/env.tt +3 -3
- data/ruby_raider.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 045a0c59f5595a6598342955964d1f666dd5a7366794c88e2250f0817fd47558
|
|
4
|
+
data.tar.gz: 264214ab1455c81dab39b71a96a810d65169eaa8a385c254048a0f4926a7ac35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3bac2468b6064901f66259f96d9b3296a7bc3ccd60636f134b25512522f030327b1999d3bcc0ad5a6802ec69abde7caab7f4fca94e720875eb9625bed9b43a1
|
|
7
|
+
data.tar.gz: 73d5ef7d7aa9b04e0960457ab750f549302ea087e043e08c4f745364a12cbcb0cd21abfd2b8baf5bf8c040ef50c3e7b623ed8cfa20203e86d27ff9d5ea941e5b
|
data/README.md
CHANGED
|
@@ -13,11 +13,19 @@ then do:
|
|
|
13
13
|
|
|
14
14
|
and you will have a new project in the folder you are in
|
|
15
15
|
|
|
16
|
-
Currently we
|
|
16
|
+
Currently we support:
|
|
17
17
|
|
|
18
|
-
* Gerating a
|
|
19
|
-
|
|
20
|
-
* Generating
|
|
18
|
+
* Gerating a framework with Cucumber and Selenium
|
|
19
|
+
|
|
20
|
+
* Generating a framework with Rspec and Selenium
|
|
21
|
+
|
|
22
|
+
* Generating a framework with Cucumber and Watir
|
|
23
|
+
|
|
24
|
+
* Generating a framework with Rspec and Watir
|
|
25
|
+
|
|
26
|
+
* Generating a framework with Rspec and Appium for IOS
|
|
27
|
+
|
|
28
|
+
* Generating a framework with Cucumber and Appium for IOS
|
|
21
29
|
|
|
22
30
|
In order to run the appium tests, download the example [app](https://github.com/cloudgrey-io/the-app/releases/tag/v1.10.0)
|
|
23
31
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<% case automation
|
|
2
2
|
when 'selenium' -%>
|
|
3
|
-
<%= ERB.new(File.read(File.expand_path('./partials/selenium_appium_env.tt', __dir__))).result(binding)
|
|
3
|
+
<%= ERB.new(File.read(File.expand_path('./partials/selenium_appium_env.tt', __dir__))).result(binding) %>
|
|
4
4
|
<% when 'watir' -%>
|
|
5
|
-
<%= ERB.new(File.read(File.expand_path('./partials/watir_env.tt', __dir__))).result(binding)
|
|
5
|
+
<%= ERB.new(File.read(File.expand_path('./partials/watir_env.tt', __dir__))).result(binding) %>
|
|
6
6
|
<% else -%>
|
|
7
|
-
<%= ERB.new(File.read(File.expand_path('./partials/appium_env.tt', __dir__))).result(binding)
|
|
7
|
+
<%= ERB.new(File.read(File.expand_path('./partials/appium_env.tt', __dir__))).result(binding) %>
|
|
8
8
|
<% end -%>
|
data/ruby_raider.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'ruby_raider'
|
|
5
|
-
s.version = '0.3.
|
|
5
|
+
s.version = '0.3.5'
|
|
6
6
|
s.summary = 'A gem to make setup and start of UI automation projects easier'
|
|
7
7
|
s.description = 'This gem has everything you need to start working with test automation'
|
|
8
8
|
s.authors = ['Agustin Pequeno']
|
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: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Agustin Pequeno
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-06-
|
|
11
|
+
date: 2022-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|