For some reason, in production, with this one line of code:
javascript_include_tag :all, :cache => true
I get this:
I’ve tried setting production.rb with both the default:
config.action_controller.perform_caching = true
and:
ActionController::Base.perform_caching = true
to no avail.
Did the syntax change? Is this just not implemented yet?
Stephen