aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/ordered_options.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/ordered_options.rb b/activesupport/lib/active_support/ordered_options.rb
index 642045186f..596a7b757d 100644
--- a/activesupport/lib/active_support/ordered_options.rb
+++ b/activesupport/lib/active_support/ordered_options.rb
@@ -1,5 +1,7 @@
+require 'active_support/ordered_hash'
+
module ActiveSupport #:nodoc:
- class OrderedOptions < OrderedHash #:nodoc:
+ class OrderedOptions < OrderedHash
def []=(key, value)
super(key.to_sym, value)
end