Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
Starting to add chunky_png
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Nov 28, 2011
1 parent 3e8a6dc commit 752edcc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -54,8 +54,9 @@ Standing on the shoulders of giants

Many thanks to the wonderful libraries that make this gem possible:

* capybara
* selenium-webdriver
* [capybara](https://github.com/jnicklas/capybara)
* [selenium-webdriver](http://seleniumhq.org/docs/01_introducing_selenium.html#selenium-2-aka-selenium-webdriver)
* [chunky_png](https://github.com/wvanbergen/chunky_png) (and especially [this blog post about using chunky_png to create image diffs](http://jeffkreeftmeijer.com/2011/comparing-images-and-creating-image-diffs/?utm_source=rubyweekly&utm_medium=email) by Jeff Kreeftmeijer)

License
-------
Expand Down
2 changes: 2 additions & 0 deletions spec/list_of_app_paths_spec.rb
Expand Up @@ -47,4 +47,6 @@
}
@x.results.must_equal(results_hash)
end

it "should have the home page row colored green and the chrome bug row colored red"
end
6 changes: 4 additions & 2 deletions x_proj.gemspec
Expand Up @@ -15,7 +15,9 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.version = XProj::VERSION

gem.add_runtime_dependency "capybara", "~> 1.1.2"
gem.add_runtime_dependency "rake", "~> 0.9.2.2"
gem.add_runtime_dependency "capybara", "~> 1.1.2"
gem.add_runtime_dependency "rake", "~> 0.9.2.2"
gem.add_runtime_dependency "chunky_png", "~> 1.2.5"

gem.add_development_dependency "sinatra", "~> 1.3.1"
end

0 comments on commit 752edcc

Please sign in to comment.