The problem in a nutshell is that in development mode we'd make changes to CSS or JS files but would always get cached/old versions of these files. Nothing I did had any effect. I checked configuration dozens of times and tried every combination of config values but always kept getting the same results: stale/cached files. I had to actually run in production mode and restart the server after every change to test.

I spent days tearing my hair out over this issue, looked at dozens of stackoverflow questions on the asset pipeline but never found one that addressed it so I thought I'd post it here for posterity.

We use Heroku and precompile our assets because Heroku fails to precompile for us (we also use devise which apparently is the cause of the heroku precompilation failure). So in order to push our precompiled assets up to Heroku we have to check them in to git.

Here's the problem.

When we upgraded to Rails 3.1.1 asset precompilation produced files both with and without the MD5 hash in the name. I didn't think much of this and went ahead and checked all these files in so I could push to heroku. Sometime later I noticed the problem with cached results in development mode. The precompiled and checked in assets without the MD5 hashes were being served from /public/assets as static files which prevented us from seeing any changes we were making in /app/assets.

After finally realizing this I ran git rm /public/assets and everything works again. So the takeaway is: Be careful checking assets into git!

To turn this into a question: how do others do this? Am I missing something obvious? What I'd really like is for Heroku to precompile my assets for me but it is failing with a db connection error that I gather is because of devise. I had hoped Rails 3.1.1 fixed this but it didn't.

link|improve this question
feedback

3 Answers

up vote 5 down vote accepted

Have you checked out this devise issue on github? Specifically Jose Valim says

Rails 3.1.1 final has a method called config.assets.initialize_on_precompile. If you set it to false, you should be good but it won't allow you to access model information on your assets (which you probably shouldn't anyway).

Maybe this will allow the precompile to happen on Heroku for you.

link|improve this answer
Dty, I had tried this exact configuration before posting this question but it didn't work for me at the time. However, I just tried it again, this time with Devise 1.4.9 and lo and behold it works! Thanks for the suggestion which made me try this again. – Jeff Cutler-Stamm Nov 9 '11 at 3:17
@JeffCutler-Stamm glad it worked out! I'm also hosting a rails 3.1.1 app on heroku but haven't added devise yet (but will soon) – Dty Nov 9 '11 at 4:00
I would note that you add that to config/application.rb – hubble Nov 12 '11 at 22:55
Awesome; thank you. – Nathan Bertram Nov 14 '11 at 4:55
1  
what flag is that? – Claudio Poli Jan 30 at 2:01
show 1 more comment
feedback

Check this guide from Heroku. It outlines the 3 ways to deploy Rails 3.1 apps. Two of these do not required local precompilation.

link|improve this answer
Thanks - but none of those work for me. As I mentioned in the question, I think this is due to devise. Precompilation during slug compilation always fails with a database connection error. – Jeff Cutler-Stamm Oct 26 '11 at 18:47
you're saying run time compilation fails for you? – John Beynon Oct 26 '11 at 18:56
yes, runtime compilation fails so i'm stuck w/ precompilation before pushing to heroku. – Jeff Cutler-Stamm Nov 1 '11 at 19:17
feedback

The reason the asset precompilation does not work could well be, that the Heroku ENV vars are not present on slug compilation (deploy) as stated here:

http://devcenter.heroku.com/articles/rails31_heroku_cedar

There is an (experimental) way to enable the ENV vars during deploy for exactly this reason, find information here:

http://devcenter.heroku.com/articles/labs-user-env-compile

Hope this helps.

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.