Created
March 4, 2012 03:35
-
-
Save ppworks/1970532 to your computer and use it in GitHub Desktop.
first heroku rails3.2.2 Gemfile sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'https://rubygems.org' | |
| gem 'rails', '3.2.2' | |
| gem 'jquery-rails' | |
| group :assets do | |
| gem 'sass-rails', '~> 3.2.3' | |
| gem 'coffee-rails', '~> 3.2.1' | |
| gem 'uglifier', '>= 1.0.3' | |
| end | |
| group :test, :development do | |
| gem 'sqlite3' | |
| gem 'heroku' | |
| end | |
| group :production do | |
| gem 'pg' | |
| gem 'thin' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment