Skip to content

Commit

Permalink
upgrade capybara-0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Oct 24, 2010
1 parent 4e632e6 commit 5953252
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 31 deletions.
4 changes: 2 additions & 2 deletions Gemfile
@@ -1,8 +1,8 @@
source :rubygems source :rubygems


group :test do group :test do
gem 'steak', :git => "git://github.com/cavalle/steak.git" gem 'steak', '>= 1.0.0.rc.1'
gem 'capybara', :git => "git://github.com/jnicklas/capybara.git" gem 'capybara'
gem 'launchy' gem 'launchy'
gem 'rspec' gem 'rspec'
gem 'rcov' gem 'rcov'
Expand Down
44 changes: 17 additions & 27 deletions Gemfile.lock
@@ -1,15 +1,7 @@
GIT GEM
remote: git://github.com/cavalle/steak.git remote: http://rubygems.org/
revision: 86331782937ee379e14e02a0d313774a0391dab4
specs:
steak (1.0.0.beta.2)
rspec

GIT
remote: git://github.com/jnicklas/capybara.git
revision: 89d00c4f0801a1d00f57c4bedb81c23b888e18df
specs: specs:
capybara (0.3.9) capybara (0.4.0)
celerity (>= 0.7.9) celerity (>= 0.7.9)
culerity (>= 0.2.4) culerity (>= 0.2.4)
mime-types (>= 1.16) mime-types (>= 1.16)
Expand All @@ -18,12 +10,8 @@ GIT
rack-test (>= 0.5.4) rack-test (>= 0.5.4)
selenium-webdriver (>= 0.0.27) selenium-webdriver (>= 0.0.27)
xpath (~> 0.1.2) xpath (~> 0.1.2)

GEM
remote: http://rubygems.org/
specs:
celerity (0.8.2) celerity (0.8.2)
childprocess (0.0.7) childprocess (0.1.3)
ffi (~> 0.6.3) ffi (~> 0.6.3)
configuration (1.1.0) configuration (1.1.0)
culerity (0.2.12) culerity (0.2.12)
Expand All @@ -42,32 +30,34 @@ GEM
rake (0.8.7) rake (0.8.7)
rcov (0.9.9) rcov (0.9.9)
rr (1.0.0) rr (1.0.0)
rspec (2.0.0) rspec (2.0.1)
rspec-core (= 2.0.0) rspec-core (~> 2.0.1)
rspec-expectations (= 2.0.0) rspec-expectations (~> 2.0.1)
rspec-mocks (= 2.0.0) rspec-mocks (~> 2.0.1)
rspec-core (2.0.0) rspec-core (2.0.1)
rspec-expectations (2.0.0) rspec-expectations (2.0.1)
diff-lcs (>= 1.1.2) diff-lcs (>= 1.1.2)
rspec-mocks (2.0.0) rspec-mocks (2.0.1)
rspec-core (= 2.0.0) rspec-core (~> 2.0.1)
rspec-expectations (= 2.0.0) rspec-expectations (~> 2.0.1)
rubyzip (0.9.4) rubyzip (0.9.4)
selenium-webdriver (0.0.29) selenium-webdriver (0.0.29)
childprocess (>= 0.0.7) childprocess (>= 0.0.7)
ffi (~> 0.6.3) ffi (~> 0.6.3)
json_pure json_pure
rubyzip rubyzip
steak (1.0.0.rc.1)
rspec
xpath (0.1.2) xpath (0.1.2)
nokogiri (~> 1.3) nokogiri (~> 1.3)


PLATFORMS PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
capybara! capybara
launchy launchy
rcov rcov
rr rr
rspec rspec
steak! steak (>= 1.0.0.rc.1)
3 changes: 1 addition & 2 deletions spec/acceptance/acceptance_helper.rb
@@ -1,6 +1,5 @@
require File.dirname(__FILE__) + "/../spec_helper" require File.dirname(__FILE__) + "/../spec_helper"


require "steak"
require 'capybara/dsl' require 'capybara/dsl'
require 'rack' require 'rack'


Expand All @@ -24,7 +23,7 @@
config.include Capybara config.include Capybara
end end


Capybara.default_selector = :css Capybara.save_and_open_page_path = File.dirname(__FILE__) + '../../tmp'


# Put your acceptance spec helpers inside /spec/acceptance/support # Put your acceptance spec helpers inside /spec/acceptance/support
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

0 comments on commit 5953252

Please sign in to comment.