Skip to content

Instantly share code, notes, and snippets.

@dodeja
Created May 7, 2011 22:45
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dodeja/960923 to your computer and use it in GitHub Desktop.
Save dodeja/960923 to your computer and use it in GitHub Desktop.
Rails 3.1 Beta 1 on Heroku Working Config
# source 'http://rubygems.org'
source :gemcutter
gem 'rails', '3.1.0.beta1'
# Asset template engines
gem 'json'
gem 'sass'
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
group :production do
gem 'therubyracer-heroku', '0.8.1.pre3'
gem 'pg', :require => 'pg'
end
group :development do
gem "therubyracer", :require => 'v8'
end
# Enable Rails's static asset server for heroku
config.serve_static_assets = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment