Heroku Doesnt Compile Assets With Rails

Posted By Weston Ganger

Heroku has a bit of a different setup for their application hosting. One major issue is that assets wont compile.

The fix is to add a gem to your gemfile

# Gemfile
group :production do
  gem 'rails_12factor'
end

That fixes any 12factor hosts.

Related External Links:

Article Topic:Software Development - Ruby / Rails

Date:April 25, 2015