ruby_raider 0.4.5 → 0.4.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/commands/utility_commands.rb +2 -1
- data/lib/utilities/utilities.rb +0 -5
- data/ruby_raider.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3cc26d0dcf593d69d1b252cdedd0098d5bd95d95863b4b596b758bc7058862cc
|
4
|
+
data.tar.gz: fb5378cd46fcc5efbcee0d7dc109dd9fb9cba1c55357314225eda0e6147a5aff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b8d0312896c83cf882aebdbfd1d6dd75da37fd22b88cf62077ee04f0e5236fa98dd53bfc4fe8fbc1981a43bd1f4d4d0c769a8350bdb2fa028f8b2ea69a19357
|
7
|
+
data.tar.gz: 017034245b025c59faccefd9b9f12024a99da8745840c3945f9023ca9d0d2ac4a1ffcefe7d3e32bd093ed48df8b2502d2f7d05f67c5610b60bbbea7be9b2c703
|
@@ -94,7 +94,8 @@ class UtilityCommands < Thor
|
|
94
94
|
|
95
95
|
desc 'version', 'It shows the version of Ruby Raider you are currently using'
|
96
96
|
def version
|
97
|
-
|
97
|
+
spec_version = Gem::Specification.load('ruby_raider.gemspec').version
|
98
|
+
puts "The Ruby Raider version is #{spec_version}, Happy testing!"
|
98
99
|
end
|
99
100
|
|
100
101
|
map '-v' => 'version'
|
data/lib/utilities/utilities.rb
CHANGED
@@ -68,11 +68,6 @@ class Utilities
|
|
68
68
|
File.open(@path, 'w') { |file| YAML.dump(@config, file) }
|
69
69
|
end
|
70
70
|
|
71
|
-
def version
|
72
|
-
spec_version = Gem::Specification.load('ruby_raider.gemspec').version
|
73
|
-
puts "The Ruby Raider version is #{spec_version}, Happy testing!"
|
74
|
-
end
|
75
|
-
|
76
71
|
def download_builds(build_type)
|
77
72
|
case build_type
|
78
73
|
when 'android'
|
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.4.
|
5
|
+
s.version = '0.4.6'
|
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']
|