capybara-screenshot 1.0.10 → 1.0.11
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 +8 -8
- data/CHANGELOG.md +6 -0
- data/lib/capybara-screenshot/rspec.rb +2 -1
- data/lib/capybara-screenshot/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NDAzM2M0MmMxYjBmOGQ4YmUyYTYwZjhlM2U4YTk5OWYyYzk3NDFhOA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NGUxYzEyYTc1MTcwMzBiOGJhMTA0ZjljMDZhNzEzZDA0OTMyNjMwNA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YmRiZTIyZGY2YTA1NTZiYzlmMDRkN2M0NmI3ZWE0NTAxNTQyZjI4NjQwZTEw
|
|
10
|
+
YTA5N2UyZDJmN2ExZmU2ZTVkOGU5MTg0MjU2OGI3NjFkODY2NzU2MzhjZDJh
|
|
11
|
+
ODZkNmQxYmViNjE1NTcyM2Q2NmEwN2ZlNzQyNWZjNjBiYzllMDc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NGUyZDFiNWQyZjYyZGIwM2U2MDNlMTY1NWMxOTg0NWM3ZTIxMTFlMTNhMjJj
|
|
14
|
+
Y2E3ZmMzMjY3M2RjNmMzNDQ4ZTZjODdkMjJiNDU2MGU0NWJlMDE4MTUwZjli
|
|
15
|
+
NmNjNjU1MzFjMjEzMzg5ZGFhMzk2ZjFmNmI5YWQ5MmRiNjdlOWY=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
22 July 2015 - 1.0.10 -> 1.0.111
|
|
2
|
+
|
|
3
|
+
* [Support for Fuubar reporter](https://github.com/mattheworiordan/capybara-screenshot/pull/137)
|
|
4
|
+
|
|
5
|
+
Thanks to [Kai Schlichting](https://github.com/lacco)
|
|
6
|
+
|
|
1
7
|
29 June 2015 - 1.0.9 -> 1.0.10
|
|
2
8
|
|
|
3
9
|
* [Small fix to memoization](https://github.com/mattheworiordan/capybara-screenshot/pull/134) plus [mini refactor](https://github.com/mattheworiordan/capybara-screenshot/commit/1db950bc53c729b26b8881d058a8781d6e7611b8)
|
|
@@ -40,7 +40,8 @@ module Capybara
|
|
|
40
40
|
"RSpec::Core::Formatters::DocumentationFormatter" => Capybara::Screenshot::RSpec::TextReporter,
|
|
41
41
|
"RSpec::Core::Formatters::HtmlFormatter" => Capybara::Screenshot::RSpec::HtmlLinkReporter,
|
|
42
42
|
"RSpec::Core::Formatters::TextMateFormatter" => Capybara::Screenshot::RSpec::TextMateLinkReporter, # RSpec 2
|
|
43
|
-
"RSpec::Mate::Formatters::TextMateFormatter" => Capybara::Screenshot::RSpec::TextMateLinkReporter # RSpec 3
|
|
43
|
+
"RSpec::Mate::Formatters::TextMateFormatter" => Capybara::Screenshot::RSpec::TextMateLinkReporter, # RSpec 3
|
|
44
|
+
"Fuubar" => Capybara::Screenshot::RSpec::TextReporter
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
class << self
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capybara-screenshot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew O'Riordan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capybara
|