diff options
author | Burke Libbey <burke@burkelibbey.org> | 2011-05-07 18:30:50 -0500 |
---|---|---|
committer | Burke Libbey <burke@burkelibbey.org> | 2011-05-07 18:30:50 -0500 |
commit | 06671c37de93702323ee281aedc4023bb8d7cdb6 (patch) | |
tree | 37e5368398cd052a451664b853cc0f42efa3e689 /actionpack/lib/action_view | |
parent | 4c4d5c7e6c028c6a29701abb0f64231ff284a466 (diff) | |
download | rails-06671c37de93702323ee281aedc4023bb8d7cdb6.tar.gz rails-06671c37de93702323ee281aedc4023bb8d7cdb6.tar.bz2 rails-06671c37de93702323ee281aedc4023bb8d7cdb6.zip |
Added activesupport requires for Array.wrap in previously modified files
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/path_set.rb | 2 | ||||
-rw-r--r-- | actionpack/lib/action_view/template/error.rb | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/path_set.rb b/actionpack/lib/action_view/path_set.rb index ea5b71bb03..54b9a6d39e 100644 --- a/actionpack/lib/action_view/path_set.rb +++ b/actionpack/lib/action_view/path_set.rb @@ -1,3 +1,5 @@ +require "active_support/core_ext/array/wrap" + module ActionView #:nodoc: # = Action View PathSet class PathSet < Array #:nodoc: diff --git a/actionpack/lib/action_view/template/error.rb b/actionpack/lib/action_view/template/error.rb index 1ee05c8f6f..d4448a7b33 100644 --- a/actionpack/lib/action_view/template/error.rb +++ b/actionpack/lib/action_view/template/error.rb @@ -1,3 +1,4 @@ +require "active_support/core_ext/array/wrap" require "active_support/core_ext/enumerable" module ActionView |