capybara-screenshot 1.0.20 → 1.0.21
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/CHANGELOG.md +4 -0
- data/capybara-screenshot.gemspec +4 -1
- data/lib/capybara-screenshot/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2839e0fb312bb63dc21c79ccc62cf03e1f0c2108
|
|
4
|
+
data.tar.gz: 1b35c96876b2fa3f13e2e582ad15c334225b4e9e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a381fbb702a47367f84b50a93391e885c8fbb3650dfb8f8efa3f4064dd06ffcdf85251ebc175fb7ffdce6ac2134110da1f993076cf441a8b9bc52c1e0c7d3ef
|
|
7
|
+
data.tar.gz: 3a991f0ba8200bb4452b43e5024c6f293eefc81c5cccda07c628da3311d786b61101de4c9c6d489a68bc4489a2da3cee72f5def87885f82b3282a269fd5ce591
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
03 May 2018 - 1.0.20 -> 1.0.21
|
|
2
|
+
|
|
3
|
+
* [Bug fix: Fix Ruby version compares in Gemspec](https://github.com/mattheworiordan/capybara-screenshot/pull/231)
|
|
4
|
+
|
|
1
5
|
03 May 2018 - 1.0.19 -> 1.0.20
|
|
2
6
|
|
|
3
7
|
* [Bug fix: Only take screenshots for feature tests](https://github.com/mattheworiordan/capybara-screenshot/pull/223)
|
data/capybara-screenshot.gemspec
CHANGED
|
@@ -15,11 +15,14 @@ Gem::Specification.new do |s|
|
|
|
15
15
|
|
|
16
16
|
s.rubyforge_project = "capybara-screenshot"
|
|
17
17
|
|
|
18
|
-
if RUBY_VERSION < "1.9"
|
|
18
|
+
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("1.9")
|
|
19
19
|
s.add_dependency 'capybara', ['>= 1.0', '< 2']
|
|
20
|
+
elsif Gem::Version.new(RUBY_VERSION) <= Gem::Version.new("2.2.2")
|
|
21
|
+
s.add_dependency 'capybara', ['>= 1.0', '< 3']
|
|
20
22
|
else
|
|
21
23
|
s.add_dependency 'capybara', ['>= 1.0', '< 4']
|
|
22
24
|
end
|
|
25
|
+
|
|
23
26
|
s.add_dependency 'launchy'
|
|
24
27
|
|
|
25
28
|
s.add_development_dependency 'rspec'
|