From 08a533645eb2bb15aeb91528c3c01ea6fc742569 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 24 Feb 2007 20:33:47 +0000 Subject: [PATCH] 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 --- railties/helpers/application.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/railties/helpers/application.rb b/railties/helpers/application.rb index b61c6de3867c3..f43525bf80019 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