diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-02-24 20:33:47 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-02-24 20:33:47 +0000 |
commit | 08a533645eb2bb15aeb91528c3c01ea6fc742569 (patch) | |
tree | d0741def41aba059a1521cb1fcc045fa3fc2cd33 | |
parent | f95dfff966696cba237723e4abfefd3ae8ca91cb (diff) | |
download | rails-08a533645eb2bb15aeb91528c3c01ea6fc742569.tar.gz rails-08a533645eb2bb15aeb91528c3c01ea6fc742569.tar.bz2 rails-08a533645eb2bb15aeb91528c3c01ea6fc742569.zip |
Make it a default assumption that you want all helpers, all the time (yeah, yeah)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6222 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/helpers/application.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/helpers/application.rb b/railties/helpers/application.rb index b61c6de386..f43525bf80 100644 --- a/railties/helpers/application.rb +++ b/railties/helpers/application.rb @@ -2,4 +2,5 @@ # Likewise, all the methods added will be available for all controllers. class ApplicationController < ActionController::Base + helper :all # include all helpers, all the time end |