Release capybara-webkit 1.10.0

This commit is contained in:
Matthew Horan 2016-04-07 20:44:16 -04:00
parent 753348ecb4
commit 4eb066c922
No known key found for this signature in database
GPG Key ID: 2FA954B6CAEFCE63
7 changed files with 17 additions and 16 deletions

View File

@ -1,9 +1,9 @@
appraise "2.4" do
gem "capybara", "~> 2.4.0"
appraise "2.6" do
gem "capybara", "~> 2.6.0"
end
appraise "2.5" do
gem "capybara", "~> 2.5.0"
appraise "2.7" do
gem "capybara", "~> 2.7.0"
end
appraise "master" do

View File

@ -1,3 +1,12 @@
New for 1.10.0:
* Capybara 2.7 compatibility
* Extract class for booting the server
* Move stderr option to config
* Deprecate webkit_debug driver
* Abort requests before changing settings
* Convert JavaScript DateTime objects to Ruby Date objects on evaluation
New for 1.9.0:
* Raise error for Qt version greater than 5.5

View File

@ -19,7 +19,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = ">= 1.9.0"
s.add_runtime_dependency("capybara", ">= 2.3.0", "< 2.7.0")
s.add_runtime_dependency("capybara", ">= 2.3.0", "< 2.8.0")
s.add_runtime_dependency("json")
s.add_development_dependency("rspec", "~> 2.14.0")

View File

@ -1,8 +0,0 @@
# This file was generated by Appraisal
source "https://rubygems.org"
gem "mime-types", "< 3.0", :platforms=>[:ruby_19, :jruby_19]
gem "capybara", "~> 2.5.0"
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.6.0"
gem "mime-types", "< 3.0", platforms: [:ruby_19, :jruby_19]
gemspec :path=>"../"

View File

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

View File

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