mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
Release capybara-webkit 1.9.0
This commit is contained in:
parent
c226439827
commit
18651a0caf
5 changed files with 11 additions and 5 deletions
6
NEWS.md
6
NEWS.md
|
@ -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
|
||||
|
|
|
@ -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=>"../"
|
|
@ -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=>"../"
|
|
@ -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=>"../"
|
|
@ -1,7 +1,7 @@
|
|||
module Capybara
|
||||
module Driver
|
||||
class Webkit
|
||||
VERSION = "1.8.0".freeze
|
||||
VERSION = "1.9.0".freeze
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue