diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2011-07-01 20:17:21 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2011-07-01 20:17:48 +0100 |
commit | fdaecbed84af426213cbb77568e25128cf01484c (patch) | |
tree | 0d2ec50782e82838831f7286892bfae2849ef845 /actionpack | |
parent | 987eb7d4236513978e3cfcd5c3c159d95d2a84c8 (diff) | |
download | rails-fdaecbed84af426213cbb77568e25128cf01484c.tar.gz rails-fdaecbed84af426213cbb77568e25128cf01484c.tar.bz2 rails-fdaecbed84af426213cbb77568e25128cf01484c.zip |
Add missing requires for ActionView::Context and Module#instance_method_names
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index 9feec04429..8d78190131 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -1,9 +1,11 @@ require 'cgi' +require 'action_view/context' require 'action_view/helpers/date_helper' require 'action_view/helpers/tag_helper' require 'action_view/helpers/form_tag_helper' require 'active_support/core_ext/class/attribute' require 'active_support/core_ext/hash/slice' +require 'active_support/core_ext/module/method_names' require 'active_support/core_ext/object/blank' require 'active_support/core_ext/string/output_safety' require 'active_support/core_ext/array/extract_options' |