In the process of debugging this problem, I have tried to run my application in production mode locally and it doesn\'t serve up any assets. Additionally, I have a s
This is sort of a guess, but doesn't compile assets need to be set to true?
config.assets.compile = true
and i think you need to compile the assets like this:
rake assets:precompile RAILS_ENV='production'