Release capybara-webkit 2.1.0

* Capybara 2.3 compatibility.
* Kill webkit_server when parent process closes stdin.
This commit is contained in:
Matthew Horan 2014-07-02 13:53:59 -04:00
parent ae862d695b
commit 2687c2f31c
6 changed files with 18 additions and 5 deletions

View File

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
capybara-webkit (1.1.1) capybara-webkit (1.2.0)
capybara (>= 2.0.2, < 2.4.0) capybara (>= 2.0.2, < 2.4.0)
json json
@ -25,8 +25,12 @@ GEM
ffi (1.9.3-java) ffi (1.9.3-java)
ffi (1.9.3-x86-mingw32) ffi (1.9.3-x86-mingw32)
json (1.8.1) json (1.8.1)
json (1.8.1-java)
launchy (2.4.2) launchy (2.4.2)
addressable (~> 2.3) addressable (~> 2.3)
launchy (2.4.2-java)
addressable (~> 2.3)
spoon (~> 0.0.1)
mime-types (2.3) mime-types (2.3)
mini_magick (3.2.1) mini_magick (3.2.1)
subexec (~> 0.0.4) subexec (~> 0.0.4)
@ -34,6 +38,9 @@ GEM
multi_json (1.8.4) multi_json (1.8.4)
nokogiri (1.6.2.1) nokogiri (1.6.2.1)
mini_portile (= 0.6.0) mini_portile (= 0.6.0)
nokogiri (1.6.2.1-java)
nokogiri (1.6.2.1-x86-mingw32)
mini_portile (= 0.6.0)
rack (1.5.2) rack (1.5.2)
rack-protection (1.3.2) rack-protection (1.3.2)
rack rack
@ -58,6 +65,8 @@ GEM
rack (~> 1.4) rack (~> 1.4)
rack-protection (~> 1.3) rack-protection (~> 1.3)
tilt (~> 1.3, >= 1.3.3) tilt (~> 1.3, >= 1.3.3)
spoon (0.0.4)
ffi
subexec (0.0.4) subexec (0.0.4)
tilt (1.3.3) tilt (1.3.3)
websocket (1.0.7) websocket (1.0.7)

View File

@ -1,3 +1,7 @@
New for 1.2.0:
* Capybara 2.3 compatibility.
* Kill webkit_server when parent process closes stdin.
New for 1.1.1: New for 1.1.1:
* Lock capybara dependency to < 2.2.0. * Lock capybara dependency to < 2.2.0.

View File

@ -1,7 +1,7 @@
PATH PATH
remote: ../ remote: ../
specs: specs:
capybara-webkit (1.1.1) capybara-webkit (1.2.0)
capybara (>= 2.0.2, < 2.4.0) capybara (>= 2.0.2, < 2.4.0)
json json

View File

@ -1,7 +1,7 @@
PATH PATH
remote: ../ remote: ../
specs: specs:
capybara-webkit (1.1.1) capybara-webkit (1.2.0)
capybara (>= 2.0.2, < 2.4.0) capybara (>= 2.0.2, < 2.4.0)
json json

View File

@ -1,7 +1,7 @@
PATH PATH
remote: ../ remote: ../
specs: specs:
capybara-webkit (1.1.1) capybara-webkit (1.2.0)
capybara (>= 2.0.2, < 2.4.0) capybara (>= 2.0.2, < 2.4.0)
json json

View File

@ -1,7 +1,7 @@
module Capybara module Capybara
module Driver module Driver
class Webkit class Webkit
VERSION = '1.1.1'.freeze VERSION = '1.2.0'.freeze
end end
end end
end end