Since upgrading to Rails 2.1.0 I’ve noticed my views are being cached
in the development environment, which is quite annoying.
In my environments/development.rb, I’ve removed the line:
config.action_view.cache_template_extensions = false
and made sure this line exists:
config.action_controller.perform_caching = false
But the problem persists. What could be the issue?
Eric