diff options
author | Xavier Noria <fxn@hashref.com> | 2010-06-11 15:20:26 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-06-11 15:20:26 +0200 |
commit | b69a2db952497473aacef29ea8c85973e634048f (patch) | |
tree | 4a5f5cbe40acd085e586220de211665d1bdd4b54 /actionpack/lib/action_view | |
parent | 63560660062d552d6bbebec007154f0c639bf865 (diff) | |
download | rails-b69a2db952497473aacef29ea8c85973e634048f.tar.gz rails-b69a2db952497473aacef29ea8c85973e634048f.tar.bz2 rails-b69a2db952497473aacef29ea8c85973e634048f.zip |
adds missing require for having ActiveSupport::InheritableOptions defined
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/base.rb | 1 |
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 |