Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uncaught exception: undefined method env' for class Capybara::Driver::RackTest' #36

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ config/database.yml
*.DS_Store
*.swp
.rvmrc

vendor/bundle
.sass-cache/
29 changes: 23 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
source 'http://rubygems.org'
source 'http://gemcutter.org'

gem 'rails', '3.0.5'
gem 'mongoid', '2.0.0.beta.20'
gem 'rails'
gem 'mongoid'
gem 'bson_ext'
gem 'yajl-ruby'
gem 'will_paginate'
gem 'rack-ssl'
gem "bcrypt-ruby", :require => "bcrypt"
gem 'validate_url', '0.1.6'
gem 'validate_url'
gem 'email_validator'
gem 'chronic'
gem 'jquery-rails'

gem 'haml-rails'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end

group :development, :test do
gem 'rspec-rails', '2.4.1'
gem 'cucumber-rails'
gem 'rspec-rails'
gem 'steak'
gem 'capybara'
gem 'selenium-client'
gem 'selenium-webdriver'
gem 'launchy'
gem 'shoulda'
gem 'factory_girl_rails', '1.1.beta1'
gem 'factory_girl_rails'
gem 'webrat'
gem 'autotest'
gem 'autotest-growl'
Expand All @@ -32,3 +41,11 @@ group :development, :test do
gem 'delorean'
gem 'rspec-set'
end

group :test do
gem 'cucumber-rails'
end

group :development do
gem 'erb2haml'
end
Loading