-
-
Save victusfate/963679 to your computer and use it in GitHub Desktop.
Rails 3.1 Beta 1 on Heroku Working Config
This file contains 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 '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 |
This file contains 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
# 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