Skip to content
This repository has been archived by the owner on Dec 1, 2017. It is now read-only.

Commit

Permalink
Remove capybara requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
mjankowski committed Dec 30, 2012
1 parent 74a8e22 commit 4c73f24
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 27 deletions.
20 changes: 0 additions & 20 deletions Gemfile.lock
Expand Up @@ -39,23 +39,13 @@ GEM
rake rake
arel (3.0.2) arel (3.0.2)
builder (3.0.0) builder (3.0.0)
capybara (1.1.2)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
selenium-webdriver (~> 2.0)
xpath (~> 0.1.4)
childprocess (0.3.1)
ffi (~> 1.0.6)
diff-lcs (1.1.3) diff-lcs (1.1.3)
erubis (2.7.0) erubis (2.7.0)
factory_girl (3.0.0) factory_girl (3.0.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
factory_girl_rails (3.0.0) factory_girl_rails (3.0.0)
factory_girl (~> 3.0.0) factory_girl (~> 3.0.0)
railties (>= 3.0.0) railties (>= 3.0.0)
ffi (1.0.11)
hike (1.2.1) hike (1.2.1)
i18n (0.6.0) i18n (0.6.0)
journey (1.0.3) journey (1.0.3)
Expand All @@ -69,7 +59,6 @@ GEM
mocha (0.12.3) mocha (0.12.3)
metaclass (~> 0.0.1) metaclass (~> 0.0.1)
multi_json (1.2.0) multi_json (1.2.0)
nokogiri (1.5.2)
polyglot (0.3.3) polyglot (0.3.3)
rack (1.4.1) rack (1.4.1)
rack-cache (1.2) rack-cache (1.2)
Expand Down Expand Up @@ -109,12 +98,6 @@ GEM
activesupport (>= 3.0) activesupport (>= 3.0)
railties (>= 3.0) railties (>= 3.0)
rspec (~> 2.9.0) rspec (~> 2.9.0)
rubyzip (0.9.6.1)
selenium-webdriver (2.20.0)
childprocess (>= 0.2.5)
ffi (~> 1.0)
multi_json (~> 1.0)
rubyzip
sprockets (2.1.2) sprockets (2.1.2)
hike (~> 1.2) hike (~> 1.2)
rack (~> 1.0) rack (~> 1.0)
Expand All @@ -125,15 +108,12 @@ GEM
polyglot polyglot
polyglot (>= 0.3.1) polyglot (>= 0.3.1)
tzinfo (0.3.32) tzinfo (0.3.32)
xpath (0.1.4)
nokogiri (~> 1.3)


PLATFORMS PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
appraisal (~> 0.5.1) appraisal (~> 0.5.1)
capybara (>= 0.4.0)
factory_girl_rails factory_girl_rails
mocha (= 0.12.3) mocha (= 0.12.3)
pacecar! pacecar!
Expand Down
1 change: 0 additions & 1 deletion pacecar.gemspec
Expand Up @@ -20,7 +20,6 @@ Gem::Specification.new do |s|
s.add_dependency("activerecord", ">= 3.0.0") s.add_dependency("activerecord", ">= 3.0.0")


s.add_development_dependency("appraisal", "~> 0.5.1") s.add_development_dependency("appraisal", "~> 0.5.1")
s.add_development_dependency("capybara", ">= 0.4.0")
s.add_development_dependency("mocha", "0.12.3") s.add_development_dependency("mocha", "0.12.3")
s.add_development_dependency("rspec-rails", ">= 2.9.0") s.add_development_dependency("rspec-rails", ">= 2.9.0")
s.add_development_dependency("factory_girl_rails") s.add_development_dependency("factory_girl_rails")
Expand Down
1 change: 0 additions & 1 deletion spec/integration/navigation_spec.rb
@@ -1,7 +1,6 @@
require 'spec_helper' require 'spec_helper'


describe "Navigation" do describe "Navigation" do
include Capybara::DSL


it "should be a valid app" do it "should be a valid app" do
::Rails.application.should be_a(Dummy::Application) ::Rails.application.should be_a(Dummy::Application)
Expand Down
5 changes: 0 additions & 5 deletions spec/spec_helper.rb
Expand Up @@ -11,11 +11,6 @@


Rails.backtrace_cleaner.remove_silencers! Rails.backtrace_cleaner.remove_silencers!


# Configure capybara for integration testing
require "capybara/rails"
Capybara.default_driver = :rack_test
Capybara.default_selector = :css

# Load support files # Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }


Expand Down

0 comments on commit 4c73f24

Please sign in to comment.