Release capybara-webkit 1.9.0

This commit is contained in:
Matthew Horan 2016-03-29 21:53:19 -04:00
parent c226439827
commit 18651a0caf
5 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,9 @@
New for 1.9.0:
* Raise error for Qt version greater than 5.5
* Fix hovering SVG elements
* Add basic send_keys implementation
New for 1.8.0:
* Allow Capybara 2.6

View File

@ -2,7 +2,7 @@
source "https://rubygems.org"
gem "mime-types", "< 3.0", :platforms=>[:ruby_19, :jruby_19]
gem "capybara", "~> 2.4.0"
gem "mime-types", "< 3.0", platforms: [:ruby_19, :jruby_19]
gemspec :path=>"../"

View File

@ -2,7 +2,7 @@
source "https://rubygems.org"
gem "mime-types", "< 3.0", :platforms=>[:ruby_19, :jruby_19]
gem "capybara", "~> 2.5.0"
gem "mime-types", "< 3.0", platforms: [:ruby_19, :jruby_19]
gemspec :path=>"../"

View File

@ -2,7 +2,7 @@
source "https://rubygems.org"
gem "capybara", github: "jnicklas/capybara"
gem "mime-types", "<3.0", platforms: [:ruby_19, :jruby_19]
gem "mime-types", "< 3.0", :platforms=>[:ruby_19, :jruby_19]
gem "capybara", :github=>"jnicklas/capybara"
gemspec :path=>"../"

View File

@ -1,7 +1,7 @@
module Capybara
module Driver
class Webkit
VERSION = "1.8.0".freeze
VERSION = "1.9.0".freeze
end
end
end