When I deployed my latest application, my all.js file was never created. It’s because of this that my entire website receives a 500 error.
I can’t find too much information on the all.js file out there.
Does anyone know how this file is generated, and what may have caused this error?
Thanks!
Ok it turns out that in my _head.haml , my javascript_include tags had an additional or innaprioriately written option.
Simply removing the cache option at the end allowed rails’ auto caching to compile this into an all.js .
For the record, that is set up in my environements/production.rb as :
Which I would imagine is a sleek way load a site faster when all the .js files and .css files are consolidated to two master files.