Skip to content

Instantly share code, notes, and snippets.

@tommi-lew
Created July 2, 2012 14:12
Show Gist options
  • Save tommi-lew/3033435 to your computer and use it in GitHub Desktop.
Save tommi-lew/3033435 to your computer and use it in GitHub Desktop.
Gemfile for a new rails app
source :rubygems
gem 'rails' , '3.2.3'
gem "unicorn" , "~> 4.3.1"
gem "jquery-rails" , "~> 2.0.2"
gem "rake" , "~> 0.9.2.2"
gem "pg" , "~> 0.14.0"
group :development, :test do
gem "rspec-rails" , "~> 2.10.1"
gem "jasmine" , "~> 1.2.0"
end
group :development do
gem "sqlite3" , "~> 1.3.6"
gem "heroku" , "~> 2.28.7"
end
group :test do
gem "fixture_builder" , "~> 0.3.3"
gem "shoulda" , '~> 3.0.1'
gem "timecop" , '~> 0.3.5'
gem 'capybara' , '~> 1.1.2'
gem "webmock" , "~> 1.8.7"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment