Skip to content

Instantly share code, notes, and snippets.

@travisvalentine
travisvalentine / Gemfile
Created April 15, 2012 14:20
Fix for Heroku in production, changing Gemfile and Rakefile
# Fix for error: `ActionView::Template::Error ('twitter/bootstrap.less' wasn't found.`
# Gems inside of assets aren't required in production, but we need bootstrap in production
# So pull the bootstrap gem outside of assets
# You also need to remove `app/assets/stylesheets/bootstrap.css.less` if you haven't already.
gem 'twitter-bootstrap-rails'
group :assets do
..