Why can I access helper methods for one controller in the views for a different controller? Is there a way to disable this without hacking/patching Rails?
|
|
The answer depends on the Rails version. Rails >= 3.1Change the
When false, it will skip the inclusion. Rails < 3.1Delete the following line from
In this way each controller will load its own helpers. |
|||||||||||||||
|
|
@George Schreiber's method doesn't work as of Rails 3.1; the code has changed significantly. However, there's now an even better way to disable this feature in Rails 3.1 (and hopefully later). In your config/application.rb, add this line:
This will prevent ApplicationController from loading all of the helpers. (For anyone who is interested, here's the pull request where the feature was created.) |
|||||||||||||
|
|
In Rails 3,
So yes, if you derive your class from To come around this, call
E.g.:
|
|||||
|
|
Actually in Rails 2, the default functionality of ActionController::Base was to include all helpers. Changeset 6222 on 02/24/07 20:33:47 (3 years ago) by dhh: Make it a default assumption that you want all helpers, all the time (yeah, yeah) change:
As of Rails 3 beta 1, that is no longer the case as noted in the CHANGELOG:
|
|||||
|