ruby_raider 0.6.9 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/templates/common/gemfile.tt +1 -1
- data/lib/ruby_raider.rb +1 -1
- 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: fb170c4c6622158ba4088d25feebd10507348502651317c347c12700a548dbb6
|
4
|
+
data.tar.gz: ea3cc03c9fb1be421f8e984af79a4d91c42f98882e002047f1d55cda8252f2eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4342e7ae85754d140bf5831cedf1e2403154ff5be7805ff06c346bc68ba91d0c63f6e1ee4a904ab6b2bbc31b32b3676f4cdaa58b0a69515fe6013f1708d7e628
|
7
|
+
data.tar.gz: 4c44dd2157bfbe3d38cf0e353a9a78639ef98c2baaa8469f2d10ec756dc313bc4c98fed5a5ccc23bef8e583c6faf8da3a66f52b049efba5f9d5ee25abee837ea
|
@@ -26,7 +26,7 @@ gem 'rubocop'
|
|
26
26
|
<% if framework == 'rspec' -%>
|
27
27
|
gem 'rubocop-rspec'
|
28
28
|
<% end -%>
|
29
|
-
gem 'ruby_raider'
|
29
|
+
gem 'ruby_raider', '~> 0.7.0'
|
30
30
|
<%= ERB.new(File.read(File.expand_path('./partials/automation_gems.tt', __dir__))).result(binding).strip! %>
|
31
31
|
<% if %w[selenium watir].include? automation -%>
|
32
32
|
gem 'webdrivers'
|
data/lib/ruby_raider.rb
CHANGED
@@ -26,7 +26,7 @@ module RubyRaider
|
|
26
26
|
desc 'version', 'It shows the version of Ruby Raider you are currently using'
|
27
27
|
|
28
28
|
def version
|
29
|
-
puts 'The Ruby Raider version is 0.
|
29
|
+
puts 'The Ruby Raider version is 0.7.0, Happy testing!'
|
30
30
|
end
|
31
31
|
|
32
32
|
map 'v' => 'version'
|
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.
|
5
|
+
s.version = '0.7.0'
|
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']
|