aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2010-11-18 00:24:39 +0100
committerJosé Valim <jose.valim@gmail.com>2010-11-18 00:29:23 +0100
commitae56c82e2b9f16bf754320a541bf37362661d68f (patch)
treeb2d6054310bcca0c86ae4db1950454f193c209dc /actionpack
parent250fb3f6c297e1f0bdc80a44ae6ac77c04cd9c85 (diff)
downloadrails-ae56c82e2b9f16bf754320a541bf37362661d68f.tar.gz
rails-ae56c82e2b9f16bf754320a541bf37362661d68f.tar.bz2
rails-ae56c82e2b9f16bf754320a541bf37362661d68f.zip
Added config.action_controller.include_all_helpers to CHANGELOG.
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index db02beee35..74d017cc3d 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*Rails 3.1.0 (unreleased)*
+* Added config.action_controller.include_all_helpers. By default 'helper :all' is done in ActionController::Base, which includes all the helpers by default. Setting include_all_helpers to false will result in including only application_helper and helper corresponding to controller (like foo_helper for foo_controller). [Piotr Sarnacki]
+
* Added a convenience idiom to generate HTML5 data-* attributes in tag helpers from a :data hash of options:
tag("div", :data => {:name => 'Stephen', :city_state => %w(Chicago IL)})