aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-06-11 15:20:26 +0200
committerXavier Noria <fxn@hashref.com>2010-06-11 15:20:26 +0200
commitb69a2db952497473aacef29ea8c85973e634048f (patch)
tree4a5f5cbe40acd085e586220de211665d1bdd4b54 /actionpack
parent63560660062d552d6bbebec007154f0c639bf865 (diff)
downloadrails-b69a2db952497473aacef29ea8c85973e634048f.tar.gz
rails-b69a2db952497473aacef29ea8c85973e634048f.tar.bz2
rails-b69a2db952497473aacef29ea8c85973e634048f.zip
adds missing require for having ActiveSupport::InheritableOptions defined
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view/base.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 5fa1b5619b..b7f404f5d8 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -2,6 +2,7 @@ require 'active_support/core_ext/module/attr_internal'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/class/attribute'
require 'active_support/core_ext/array/wrap'
+require 'active_support/ordered_options.rb'
module ActionView #:nodoc:
class NonConcattingString < ActiveSupport::SafeBuffer