Skip to content

Instantly share code, notes, and snippets.

@jayroh
Forked from dpickett/railsgemfile.rb
Created April 16, 2010 03:45
Show Gist options
  • Save jayroh/367977 to your computer and use it in GitHub Desktop.
Save jayroh/367977 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.0.0.beta3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg', '0.8.0'
gem 'inherited_resources', '1.1.2'
gem 'responders', '0.6.0'
gem 'formtastic', :git => 'git://github.com/justinfrench/formtastic.git', :branch => 'rails3'
gem 'authlogic', :git => 'git://github.com/odorcicd/authlogic.git', :branch => 'rails3'
group :test do
[
'rspec-mocks',
'rspec-expectations',
'rspec-core',
'rspec',
'rspec-rails'
].each do |rspec_gem|
gem rspec_gem, :git => "git://github.com/rspec/#{rspec_gem}.git", :require => nil
end
#gem 'shoulda', :git => 'git://github.com/thoughtbot/shoulda', :branch => 'rails3', :require => nil
end
group :cucumber do
gem 'capybara', :git => "git://github.com/jnicklas/capybara.git"
gem 'database_cleaner', :git => "git://github.com/bmabey/database_cleaner.git"
gem 'cucumber-rails', :git => "git://github.com/aslakhellesoy/cucumber-rails.git"
end
# Use unicorn as the web server
#gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri', '1.4.1'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for certain environments:
# gem 'rspec', :group => :test
# group :test do
# gem 'webrat'
# end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment