I like to not concatenate Javascripts in development mode but serve them as individual files. So I configured:

development.rb:

config.assets.compress = false
config.assets.debug = true
config.assets.compile = true

In my /app/assets/javascript directory I have:

  • reviews.js
  • reviews/
    • foo.js
    • bar.js

reviews.js:

//= require jquery
//= require jquery_ujs
//= require_tree ./reviews

I include the javacripts using <%= javascript_include_tag "reviews" %> in my layout. The generated page correctly references the three scripts individually and reviews.js is essentially empty. So far so good.

Now when I precompile my assets for production using rake assets:precompile the three javascript files are concatenated into reviews.js. This is all fine for production but now, in development mode, the concatenated reviews.js is served in addition to the two individual files.

Of course, this leads to all kinds of nasty bugs when developing because now, the content of foo.js and bar.js is served twice, one of them in a potentially older version in reviews.js.

How can I make sure Rails doesn't use the precompiled assets in development mode?

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted

It sounds like you are precompiling locally. Because the files exist in the expected location they are being served by your dev server, and the requests are not going to Sprockets.

The only way to stop this is delete the compiled files.

Normally you do not need to compile locally. It is expected that in almost all cases the precompile task will be run during deployment of the app. There is a Capistrano recipe for this on the asset pipeline guide page.

If you do need to have those files locally committed to your repo you could use a branch to avoid the problem. Reserve your master branch for production code, and make a second branch for dev. Only compile and commit assets on master. When you switch to dev, they will be gone. Merge dev into master as required.

Edit: Make sure you force your browser to update (control + F5) or you may find the old assets used from the browser cache!

link|improve this answer
Thanks for the advice, I deleted the compiled files locally and configured to have them compiled on git push to heroku. – Ortwin Gentz Nov 9 '11 at 12:08
That was the answer I needed. It's true I don't need these precompiled assets locallywhilst I am developing, but as I'm learning how to configure the asset pipeline, I actually DO need them to test my production mode locally, rather than wait for the surprise on Heroku! For now I'll change the directory name (or put them onto a git branch), but still it's a shame it's one more thing I need to think about, rather than a config option in development env to say "ignore the public/assets directory" which I was hoping for. – Phantomwhale Jan 20 at 2:20
You might have to don't forget to clear your browser cache too so the browser doesn't use the application.js you accidentally loaded before you rm -rf'd public/assets – Bryan Larsen Feb 29 at 15:58
Good point, I will edit that answer so that is clear up-front. – Richard Hulse Feb 29 at 19:43
feedback

I tried this and it worked. rake assets:precompile RAILS_ENV=production

I observed that the new version of assets pipeline does this when you run rake assets:precompile does rake assets:precompile:all

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.