1
0
Fork 0
mirror of https://github.com/thoughtbot/capybara-webkit synced 2023-03-27 23:22:28 -04:00

Release capybara-webkit 1.0.0

Fixes #505.
This commit is contained in:
Matthew Horan 2013-05-21 21:32:02 -04:00
parent 77973a47ae
commit 9bbf4f6b55
5 changed files with 21 additions and 17 deletions

View file

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
capybara-webkit (0.14.1) capybara-webkit (1.0.0)
capybara (~> 2.0, >= 2.0.2) capybara (~> 2.0, >= 2.0.2)
json json
@ -12,28 +12,26 @@ GEM
appraisal (0.4.0) appraisal (0.4.0)
bundler bundler
rake rake
capybara (2.0.2) capybara (2.1.0)
mime-types (>= 1.16) mime-types (>= 1.16)
nokogiri (>= 1.3.3) nokogiri (>= 1.3.3)
rack (>= 1.0.0) rack (>= 1.0.0)
rack-test (>= 0.5.4) rack-test (>= 0.5.4)
selenium-webdriver (~> 2.0) xpath (~> 2.0)
xpath (~> 1.0.0)
childprocess (0.3.6) childprocess (0.3.6)
ffi (~> 1.0, >= 1.0.6) ffi (~> 1.0, >= 1.0.6)
diff-lcs (1.1.2) diff-lcs (1.1.2)
ffi (1.2.0) ffi (1.2.0)
ffi (1.2.0-x86-mingw32) ffi (1.2.0-x86-mingw32)
json (1.7.7) json (1.8.0)
libwebsocket (0.1.7.1) libwebsocket (0.1.7.1)
addressable addressable
websocket websocket
mime-types (1.19) mime-types (1.22)
mini_magick (3.2.1) mini_magick (3.2.1)
subexec (~> 0.0.4) subexec (~> 0.0.4)
multi_json (1.5.0) multi_json (1.5.0)
nokogiri (1.5.6) nokogiri (1.5.9)
nokogiri (1.5.6-x86-mingw32)
rack (1.5.2) rack (1.5.2)
rack-protection (1.3.2) rack-protection (1.3.2)
rack rack
@ -61,7 +59,7 @@ GEM
subexec (0.0.4) subexec (0.0.4)
tilt (1.3.3) tilt (1.3.3)
websocket (1.0.6) websocket (1.0.6)
xpath (1.0.0) xpath (2.0.0)
nokogiri (~> 1.3) nokogiri (~> 1.3)
PLATFORMS PLATFORMS

View file

@ -1,4 +1,4 @@
New for HEAD: New for 1.0.0:
* Fix a memory leak in the logger. * Fix a memory leak in the logger.
* Add Vagrant configuration. * Add Vagrant configuration.
@ -6,6 +6,12 @@ New for HEAD:
* Make Node#text work for svg elements. * Make Node#text work for svg elements.
* Add Driver#version to print version info. * Add Driver#version to print version info.
* Click elements with native events. * Click elements with native events.
* Fix test failures from warnings.
* Capybara 2.1 compatibility.
* Implement right click.
* Qt 5 compatibility.
* Set text fields using native key events.
* Clear localStorage on reset.
New for 0.14.1: New for 0.14.1:

View file

@ -1,7 +1,7 @@
PATH PATH
remote: /Users/sikachu/Projects/capybara-webkit remote: /home/mhoran/capybara-webkit
specs: specs:
capybara-webkit (0.14.1) capybara-webkit (1.0.0)
capybara (~> 2.0, >= 2.0.2) capybara (~> 2.0, >= 2.0.2)
json json
@ -22,7 +22,7 @@ GEM
ffi (~> 1.0, >= 1.0.11) ffi (~> 1.0, >= 1.0.11)
diff-lcs (1.1.3) diff-lcs (1.1.3)
ffi (1.4.0) ffi (1.4.0)
json (1.7.7) json (1.8.0)
mime-types (1.21) mime-types (1.21)
mini_magick (3.5.0) mini_magick (3.5.0)
subexec (~> 0.2.1) subexec (~> 0.2.1)

View file

@ -1,7 +1,7 @@
PATH PATH
remote: /Users/sikachu/Projects/capybara-webkit remote: /home/mhoran/capybara-webkit
specs: specs:
capybara-webkit (0.14.1) capybara-webkit (1.0.0)
capybara (~> 2.0, >= 2.0.2) capybara (~> 2.0, >= 2.0.2)
json json
@ -21,7 +21,7 @@ GEM
ffi (~> 1.0, >= 1.0.11) ffi (~> 1.0, >= 1.0.11)
diff-lcs (1.1.3) diff-lcs (1.1.3)
ffi (1.4.0) ffi (1.4.0)
json (1.7.7) json (1.8.0)
mime-types (1.22) mime-types (1.22)
mini_magick (3.5.0) mini_magick (3.5.0)
subexec (~> 0.2.1) subexec (~> 0.2.1)

View file

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