diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-11-24 12:14:28 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-11-24 12:17:07 -0600 |
commit | a76351093c014029a8c9ec7c9c341dde11c57f4d (patch) | |
tree | 0d6a04c4b6f3a560554a94058907ea39d346eccd /actionpack/lib | |
parent | d6b923adbdfc9a4df20132f741bbfb43db12113c (diff) | |
download | rails-a76351093c014029a8c9ec7c9c341dde11c57f4d.tar.gz rails-a76351093c014029a8c9ec7c9c341dde11c57f4d.tar.bz2 rails-a76351093c014029a8c9ec7c9c341dde11c57f4d.zip |
helpers require dependencies
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/helpers.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/helpers.rb b/actionpack/lib/action_controller/helpers.rb index 6064931eb8..402750c57d 100644 --- a/actionpack/lib/action_controller/helpers.rb +++ b/actionpack/lib/action_controller/helpers.rb @@ -1,3 +1,5 @@ +require 'active_support/dependencies' + # FIXME: helper { ... } is broken on Ruby 1.9 module ActionController #:nodoc: module Helpers #:nodoc: |