aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2011-07-01 20:17:21 +0100
committerAndrew White <andyw@pixeltrix.co.uk>2011-07-01 20:17:48 +0100
commitfdaecbed84af426213cbb77568e25128cf01484c (patch)
tree0d2ec50782e82838831f7286892bfae2849ef845 /actionpack/lib/action_view
parent987eb7d4236513978e3cfcd5c3c159d95d2a84c8 (diff)
downloadrails-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/lib/action_view')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb2
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'