Skip to content

Instantly share code, notes, and snippets.

@kenzie
Created September 12, 2011 23:48
Show Gist options
  • Save kenzie/1212797 to your computer and use it in GitHub Desktop.
Save kenzie/1212797 to your computer and use it in GitHub Desktop.
Rails 3 default Gemfile
source 'http://rubygems.org'
gem 'rails', '3.1.0'
gem 'jquery-rails'
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
group :development, :test do
gem 'sqlite3'
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'rspec-rails'
end
group :test do
gem 'turn', :require => false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment