Skip to content

Instantly share code, notes, and snippets.

@ppworks
Created March 4, 2012 03:35
Show Gist options
  • Select an option

  • Save ppworks/1970532 to your computer and use it in GitHub Desktop.

Select an option

Save ppworks/1970532 to your computer and use it in GitHub Desktop.
first heroku rails3.2.2 Gemfile sample
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