diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-09-03 13:17:16 -0700 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-09-03 13:17:16 -0700 |
commit | 9da07d1b0166950dbdc7cc6e62751f7cabacb38b (patch) | |
tree | bfc1650d029a7d9bc0a2928a9ee11f811ecef935 /actionpack | |
parent | 8a9f4c6da43aac57cdb0078cee2bf35a2db3f25c (diff) | |
parent | 19ec3c1ae6d0e0b452a4b2d92b4840abb23f4035 (diff) | |
download | rails-9da07d1b0166950dbdc7cc6e62751f7cabacb38b.tar.gz rails-9da07d1b0166950dbdc7cc6e62751f7cabacb38b.tar.bz2 rails-9da07d1b0166950dbdc7cc6e62751f7cabacb38b.zip |
Merge pull request #2836 from avakhov/action-controller-helpers-desc
fix helpers behavior description
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/metal/helpers.rb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/metal/helpers.rb b/actionpack/lib/action_controller/metal/helpers.rb index 2df0e9422c..bd515bba82 100644 --- a/actionpack/lib/action_controller/metal/helpers.rb +++ b/actionpack/lib/action_controller/metal/helpers.rb @@ -7,9 +7,12 @@ module ActionController # by default. # # In addition to using the standard template helpers provided, creating custom helpers to - # extract complicated logic or reusable functionality is strongly encouraged. By default, the controller will - # include a helper whose name matches that of the controller, e.g., <tt>MyController</tt> will automatically - # include <tt>MyHelper</tt>. + # extract complicated logic or reusable functionality is strongly encouraged. By default, each controller + # will include all helpers. + # + # In previous versions of \Rails the controller will include a helper whose + # name matches that of the controller, e.g., <tt>MyController</tt> will automatically + # include <tt>MyHelper</tt>. To return old behavior set +config.action_controller.include_all_helpers+ to +false+. # # Additional helpers can be specified using the +helper+ class method in ActionController::Base or any # controller which inherits from it. |