diff options
author | Ernie Miller <ernie@metautonomo.us> | 2011-06-01 10:28:24 -0400 |
---|---|---|
committer | Ernie Miller <ernie@metautonomo.us> | 2011-06-01 10:30:54 -0400 |
commit | 3a2ef52ad6cede6a4bab48e4689f2466c10cb6b8 (patch) | |
tree | f9607b1740399ff8aa6d9e9b7eb72f616c010c59 /actionpack/lib | |
parent | 67e12eb3780cb1265671406ff742a0b0cd0d82b4 (diff) | |
download | rails-3a2ef52ad6cede6a4bab48e4689f2466c10cb6b8.tar.gz rails-3a2ef52ad6cede6a4bab48e4689f2466c10cb6b8.tar.bz2 rails-3a2ef52ad6cede6a4bab48e4689f2466c10cb6b8.zip |
Require attr_internal before using in ActionView::Helpers
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/controller_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/controller_helper.rb b/actionpack/lib/action_view/helpers/controller_helper.rb index e22331cb3c..db59bca159 100644 --- a/actionpack/lib/action_view/helpers/controller_helper.rb +++ b/actionpack/lib/action_view/helpers/controller_helper.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/module/attr_internal' + module ActionView module Helpers # This module keeps all methods and behavior in ActionView |