rspec-page-regression 0.1.0 → 0.1.1
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.
- data/README.md +2 -0
- data/lib/rspec/page-regression/version.rb +1 -1
- data/rspec-page-regression.gemspec +1 -1
- metadata +3 -3
data/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Rspec-page-regression is an [RSpec](https://github.com/rspec/rspec) plugin
|
|
|
4
4
|
that makes it easy to regression test your web application pages, to make
|
|
5
5
|
sure the pages continue to look the way you expect them to look.
|
|
6
6
|
|
|
7
|
+
[<img src="https://secure.travis-ci.org/ronen/rspec-page-regression.png"/>](http://travis-ci.org/ronen/rspec-page-regression)[<img src="https://gemnasium.com/ronen/rspec-page-regression.png" alt="Dependency Status" />](https://gemnasium.com/ronen/rspec-page-regression)
|
|
8
|
+
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
9
11
|
Rspec-page-regression uses [PhantomJS](http://www.phantomjs.org/) to render web page snapshots, by virtue of the [Poltergeist](https://github.com/jnicklas/capybara) driver for [Capybara](https://github.com/jnicklas/capybara). Assuming you have those installed and ready to go...
|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["ronen@barzel.org"]
|
|
11
11
|
spec.summary = %q{Web page rendering (html, css, and javascript) regression for RSpec}
|
|
12
12
|
spec.description = %q{Rspec-page-regression provides a mechanism for regression testing of web page renders in RSpec. It takes into account html, css, and javascript, by virtue of using phantomjs (via the poltergeist gem) to render snapshots. It provides an RSpec matcher that compares the test snapshot to an expected image, and facilitates management of the images.}
|
|
13
|
-
spec.homepage = ""
|
|
13
|
+
spec.homepage = "https://github.com/ronen/rspec-page-regression"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-page-regression
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -236,7 +236,7 @@ files:
|
|
|
236
236
|
- spec/spec_helper.rb
|
|
237
237
|
- spec/support/helpers.rb
|
|
238
238
|
- spec/support/matchers.rb
|
|
239
|
-
homepage:
|
|
239
|
+
homepage: https://github.com/ronen/rspec-page-regression
|
|
240
240
|
licenses:
|
|
241
241
|
- MIT
|
|
242
242
|
post_install_message:
|
|
@@ -257,7 +257,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
257
257
|
version: '0'
|
|
258
258
|
requirements: []
|
|
259
259
|
rubyforge_project:
|
|
260
|
-
rubygems_version: 1.8.
|
|
260
|
+
rubygems_version: 1.8.24
|
|
261
261
|
signing_key:
|
|
262
262
|
specification_version: 3
|
|
263
263
|
summary: Web page rendering (html, css, and javascript) regression for RSpec
|