I want Rails 3.1 to pick up more of my assets for precompilation. In particular, the default matcher for compiling files doesn't add .js files from vendor/assets/javascripts. I can just add the assets to the config.assets.precompile list, but this seems annoying. I don't want to refer to them in the application.js manifest, because I don't want them included in all pages.

In summary, any way to request that all .js files found in vendor/assets/javascripts get precompiled by rake assets:precompile, but without having them included in all pages?

link|improve this question

feedback

1 Answer

up vote 26 down vote accepted

config.assets.precompile accepts regular expressions and wildcard matching - so to ensure all js files get compiled, without specifying each by name, something like this should do the trick:

config.assets.precompile << '*.js'
link|improve this answer
6  
You probably want to overwrite what's already in precompile then: config.assets.precompile = ['*.js', '*.css']. – pat Sep 16 '11 at 4:29
1  
Although you'll probably want to add something for your images too. – pat Sep 16 '11 at 4:30
1  
@pat Actually, all images in asset/images directories are included. This is likely because they don't require any processing. – coreyward Dec 10 '11 at 22:43
4  
Though not mentioned by the documentation, if you look at the code of sprockets, you will find that config.assets.precompile also accepts Proc, which means that you can do some tricks like this: gist.github.com/1529093 – Limbo Peng Dec 28 '11 at 18:38
2  
Not sure why rake assets:precompile doesn't do this by default logically it should have done this. – gouravtiwari21 Feb 10 at 20:55
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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