When running my specs with rspec & capybara, it can\'t find capybara\'s visit method. Is there another initialization step I need to do?
$bundle exec rsp
For rspec 3 and rails, make sure you are using require "rails_helper", instead of require "spec_helper".
require "rails_helper"
require "spec_helper"
Otherwise, review the latest changes to rspec 3 & rspec-rails and Capybara 2.0.x.