I'm a bit confused as it seems like the application.css is including itself twice, once when it lists the resources from the manifest and then a cache of that. So when I delete an individual file it still seems to stay alive inside the application.css file.

application.css (source)

/*
*= require twitter/bootstrap
*= require_self
*= require_tree ./common
*= require_tree ./helpers
*/

Which works as expected and outputs in dev mode all the relevant individual files

development.rb

  # Do not compress assets
  config.assets.compress = false

  # Expands the lines which load the assets
  config.assets.debug = true

output

<link href="/assets/twitter/bootstrap.css?body=1" media="screen" rel="stylesheet" type="text/css" />
<link href="/assets/application.css?body=1" media="screen" rel="stylesheet" type="text/css" />
<link href="/assets/common/announcement.css?body=1" media="screen" rel="stylesheet" type="text/css" />
<link href="/assets/common/button.css?body=1" media="screen" rel="stylesheet" type="text/css" />
<Blah blah>

application.css (output)

This should be blank? Since all I have in my application.css file is the manifest and no actual css but instead i get all my concatenated code 106kb long.

IE if I remove a file in the common directory, it doesn't go away. It is no longer listed in the output but the css still appears from the application.css

link|improve this question

57% accept rate
2  
I have exactly the same problem both with css and js.. cannot figure it out. The "answers" below do not address the issue. I'm only working in dev mode now. How to turn off the concatonation and minifying? It's causing my jquery plugins to run twice, the CSS is doubled up. – user960009 Dec 13 '11 at 0:30
In config/environments/development.rb, if I set config.assets.debug = false, then the double loads won't occur because the extra javascript/stylesheet tags are not being generated. I don't know if changes, however, are dynamically being made to the consolidated files. – user960009 Dec 13 '11 at 0:43
1  
did you ever find a solution to this @holden? I am have the same issues and am trying desperately to figure it out. – Josh Mar 29 at 18:06
feedback

4 Answers

up vote 9 down vote accepted

I had a problem like this before. It was caused after I had precompiled the assets it was going after the applcation.css inside the public folder as well as in the apps directory. I'm not sure how to fix it so that it doesn't keep happening while in dev mode but if you delete your /public/assets directory it should fix it.

Check and see if you have a public/assets folder, if you do and it's full, it's probably why you're seeing double.

link|improve this answer
how am I supposed to hide the assets in the public folder between pushing changes in production and then going back to development? Can I remove it from my path in dev somehow? – holden Nov 17 '11 at 9:35
1  
I deleted my application.js and application.css but left the fingerprinted versions. Looks like it's working for me. – ZMorek Dec 27 '11 at 2:54
Deleting my application.css and apllication.css.gz fixed the problem. Thanks. – Kleber S. Feb 12 at 8:13
2  
I am really surprised that this work around solution is needed. I compile around 10-15 files, and each of those files is now being served as compressed and uncompressed in dev causing havoc. Does this mean I have to write a script to clean up application.js, application.css, and all the other compressed files each time? This really does not make much sense. – Matthew O'Riordan Feb 14 at 13:14
If you deploy using Capistrano, you can set up a shared folder for your assets on the production server or a hook to precompile assets on production after each deployment. This way you never have to precompile assets locally and can keep public/assets clean on your local machine to avoid the redundant includes. I'm not pretending this is ideal - it's bothersome to me that any jury rigging is needed with the assets pipeline - just that it's a relatively clean workaround. – evanrmurphy Feb 28 at 18:59
show 1 more comment
feedback

You might want to look at

http://stackoverflow.com/a/7854902/686460

"Adding config.serve_static_assets = false to development.rb will prevent loading files from /public/assets"

That did it for me.

link|improve this answer
This didn't work for me unfortunately, it's still serving a compressed version of application.js directly from /public/assets – Matthew O'Riordan Feb 14 at 13:02
Oops, sorry @Agustin, this solution did work. However, all assets that were not part of the Asset pipeline are no longer served (such as favicon.ico and fonts). Looks like I'll have to come up with a solution for those assets. – Matthew O'Riordan Feb 14 at 13:20
feedback

@Agustin's solution does it for me but here are a few things you need to do:

  1. Delete everything in /tmp/cache/assets

  2. Add config.serve_static_assets = false to development.rb or test.rb (credits to @Agustin)

  3. Restart your server.

Skipping either of these steps returned a cached application.js / .css conflicting with my updates in single files.

link|improve this answer
feedback

The assets do their job better when running the app in production environment then you'll have loading only the application.css with all the files included, and compressed, there to reduce the server request and this application.css with the compressed styles will be cached.

http://guides.rubyonrails.org/asset_pipeline.html

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.