I wish to precompile all the CSS and JS files in my project\'s app/assets folder. I do NOT want to precompile everything in vendor/assets or lib/assets, only th
A slight tweak to techpeace's answer:
config.assets.precompile = ['*.js', '*.css', '**/*.js', '**/*.css']
I would've added a comment to his answer but I don't have enough reputation yet. Give me an upvote and I'll be there!
NOTE: this will also precompile all the CSS/JavaScript included via rubygems.