I made a basic rails app with a simple pages controller with an index function and when I load the page I get:

ActionView::Template::Error (application.css isn't precompiled):
    2: <html>
    3: <head>
    4:   <title>Demo</title>
    5:   <%= stylesheet_link_tag    "application" %>
    6:   <%= javascript_include_tag "application" %>
    7:   <%= csrf_meta_tags %>
    8: </head>
  app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__43625033_88530400'

Gemfile

source 'http://rubygems.org'

gem 'rails', '3.1.0'

# Bundle edge Rails instead:
# gem 'rails',     :git => 'git://github.com/rails/rails.git'

gem 'sqlite3'

gem 'execjs'
gem 'therubyracer'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails', "  ~> 3.1.0"
  gem 'coffee-rails', "~> 3.1.0"
  gem 'uglifier'
end

gem 'jquery-rails'

# Use unicorn as the web server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'

group :test do
  # Pretty printed test output
  gem 'turn', :require => false
end
link|improve this question

2  
bundle exec rake assets:precompile seems to fix it, but why doesn't it just work? – Chris Muench Sep 1 '11 at 20:26
3  
I have the same problem in production, even after run bundle exec rake assets:precompile – Lucas Renan Sep 4 '11 at 22:03
feedback

10 Answers

up vote 130 down vote accepted

By default Rails assumes that you have your files precompiled in the production environment, if you want use live compiling (compile your assets during runtime) in production you must set the config.assets.compile to true.

# config/environments/production.rb
...
config.assets.compile = true
...

You can use this option to fallback to Sprockets when you are using precompiled assets but there are any missing precompiled files.

If config.assets.compile option is set to false and there are missing precompiled files you will get an "AssetNoPrecompiledError" indicating the name of the missing file.

link|improve this answer
I'm getting the same error, but on Heroku. Issuing a "rake assets:precompile" remotely doesn't work. Do I need anything else like setting any paths or something? Thanks – alvatar Sep 4 '11 at 16:25
3  
You might want to try what this article says: devcenter.heroku.com/articles/rails31_heroku_cedar (I haven't tried it myself yet) – Chris Muench Sep 4 '11 at 16:59
1  
Thanks for reply. I did it already, but without success. – alvatar Sep 5 '11 at 15:15
6  
Just to be clear, the config.assets.compile option is in config/environments/production.rb (if you are working in production). And if you want to be able to do live/lazy compile in production, you also need to enable the lazy compile in application.rb. – avioing Oct 19 '11 at 22:29
4  
Activating runtime compilation is not the solution, because of the performance hit we take. The solution is to fix the core problem which is preventing asset precompilation from occurring. – David Tuite Oct 27 '11 at 22:50
show 2 more comments
feedback

You will get better performance in production if you set config.assets.compile to false in production.rb and precompile your assets. You can precompile with this rake task:

bundle exec rake assets:precompile

If you are using Capistrano, version 2.8.0 has a recipe to handle this at deploy time. For more info, see the "In Production" section of the Asset Pipeline Guide: http://guides.rubyonrails.org/asset_pipeline.html

link|improve this answer
I can't believe how hard it was to find out how to do this. – derekerdmann Sep 18 '11 at 1:27
This seems like the clearly better option: setting live compile to true "uses more memory, performs more poorly than the default and is not recommended." guides.rubyonrails.org/asset_pipeline.html#live-compilation – andrew.rockwell Mar 16 at 19:08
rake -T or bundle exec rake -T is your friend. – rxgx May 15 at 23:17
feedback

A quick fix for capistrano user is to put this line to Capfile

# Uncomment if you are using Rails' asset pipeline
load 'deploy/assets'
link|improve this answer
Good reminder, thank you. – jibiel Feb 29 at 8:34
feedback

Here's the quick fix:

If you're using capistrano do this add this to your deploy.rb:

after 'deploy:update_code' do
  run "cd #{release_path}; RAILS_ENV=production rake assets:precompile"
end

cap deploy

link|improve this answer
feedback

I ran into this error message today and wanted to post the resolution to my particular my case. It turns out that my problem was that one of my css files was missing a closing brace and this was causing the file to not be compiled. It may be harder to notice this if you have an automated process that sets everything up (including the asset precompile) for your production environment.

link|improve this answer
feedback

I was having the exact same error in my development environment. In the end all I needed to do in order to fix it was to add:

config.assets.manifest = Rails.root.join("public/assets")

to my config/environments/development.rb file and it fixed it. My final config in development related to assets looks like:

config.assets.compress = false  
config.assets.precompile += %w[bootstrap-alerts.js] #Lots of other space separated files
config.assets.compile = false
config.assets.digest = true
config.assets.manifest = Rails.root.join("public/assets")
config.assets.debug = true
link|improve this answer
feedback

Rails 3.1.3 ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-linux]

My problem was (a nub mistake) the comments at the top of the application.css file, which I never looked at.

link|improve this answer
feedback

I d like to share what worked for me (none of th above did) I simply copied all the contents of application.css and pasted to the bottom of scaffolds.css.scss and then reloaded to find it working. Then I hit Undo in both application and scaffolds.css.scss so that the files went back to the way they were and reloaded and it continued to work :)

link|improve this answer
feedback

OK - I had the same problem. I didn't want to use "config.assets.compile = true" - I had to add all of my .css files to the list in config/environments/production.rb:

config.assets.precompile += %w( carts.css )

Then I had to create (and later delete) tmp/restart.txt

I consistently used the stylesheet_link_tag helper, so I found all the extra css files I needed to add with:

find . \( -type f -o -type l \) -exec grep stylesheet_link_tag {} /dev/null \;
link|improve this answer
feedback

On heroku server (readonly filesystem), If you want runtime compilation of css (its not recommended but you can do it), make sure you have done settings like below -

# inside config/application.rb
config.assets.enabled = true
config.assets.prefix = Rails.root.join('tmp/assets').to_s

# If you are using sass then keep gem outside of asset group
 gem 'sass-rails',   '3.1.4'

# inside config/environments/production.rb
config.assets.compile = true
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.