I've got a problem with Rails 3.1 assets pipeline. Assets are included twice in development:

<script src="/assets/main_new.js?body=1" type="text/javascript"></script>
<script src="/assets/pagenav.js?body=1" type="text/javascript"></script>
<script src="/assets/tours.controller.js?body=1" type="text/javascript"></script>
<script src="/assets/tours.js?body=1" type="text/javascript"></script>
<script src="/assets/application.js?body=1" type="text/javascript"></script>

Rails somehow compiles and includes application.js so all the scripts are included twice - as individual file and in application.js

Everything's fine with precompiled assets in production.

development.rb

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

production.rb

# Disable Rails's static asset server (Apache or nginx will already do this)
config.serve_static_assets = false

# Compress both stylesheets and JavaScripts
config.assets.compress = true
config.assets.js_compressor  = :uglifier
config.assets.css_compressor = :scss

config.assets.compile = false
config.assets.digest = true

application.rb

config.assets.enabled = true
link|improve this question

57% accept rate
2  
try rake assets:clean. development might still serve application.js but it shouldn't have all the other js files in it. – firien Dec 3 '11 at 1:21
feedback

1 Answer

up vote 12 down vote accepted

Try adding the following to development.rb:

config.serve_static_assets = false

The static assets refer to precompiled assets in public/assets, which is where rake assets:precompile puts them.

What's happening is that anything that exists in public/assets will override anything in app/assets if you are serving them. So public/assets/application.js is being loaded when the js tag is intending to identifiy app/assets/application.js.

link|improve this answer
It still adds application.js, but it's now empty. Thanks! – Fenelon Dec 5 '11 at 19:40
6  
Seeing this same problem running on rails 3.2 and this fix doesn't work for me. There's also nothing in public/assets as this is a brand new project, and I haven't run rake assets:precompile. Any idea's how to fix it? I have to run with config.assets.debug = false in development mode just to get my javascript to function properly and it's getting annoying! – Batkins Feb 23 at 19:51
Hmm interesting... this solution seems to work the app, but only after I ran rake assets:precompile for the first time. Makes you wonder why it's ignoring the config.assets.compile = false line. – Batkins Feb 23 at 20:01
I'm having the same issue as @Batkins in a Rails 3.2 app. When config.assets.debug = true the application.js contains the packed concatenated version. If I turn debug off this goes away and application.js just contains all of the assets together (but unpacked and readable). – Ben Scheirman Mar 6 at 14:25
2  
@BenScheirman - I have reported this as a bug to the rails github issues tracker. Someone has submitted a pull request to patch it but it hasn't been accepted yet. Hopefully it will soon. Feel free to give it a +1. – Batkins Mar 6 at 15:56
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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