Skip to content

Instantly share code, notes, and snippets.

@JohnPlummer
Created December 13, 2011 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohnPlummer/1472494 to your computer and use it in GitHub Desktop.
Save JohnPlummer/1472494 to your computer and use it in GitHub Desktop.
Rails 3.1 on Heroku, TLDR Version
source 'http://rubygems.org'
gem 'rails', '3.1.1'
gem 'thin'
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.1.4'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
group :development, :test do
gem 'ruby-debug19', :require => 'ruby-debug'
gem 'heroku'
gem 'foreman'
end
.bundle
db/*.sqlite3
log/*.log
tmp/
.sass-cache/
doc/api
doc/app
*.swp
*~
.DS_Store
*.log
.idea/*
config/heroku_env.rb
web: bundle exec rails server thin -p $PORT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment