diff options
author | thedarkone <thedarkone2@gmail.com> | 2010-09-27 14:51:31 +0200 |
---|---|---|
committer | thedarkone <thedarkone2@gmail.com> | 2010-09-27 17:45:58 +0200 |
commit | 8cda132136a766621b4c976cb1df7007d12ee6b5 (patch) | |
tree | 9e97c9f06d00e74b0a9adfda259328235c062057 /activesupport | |
parent | 918dc27345319fbabf25a43bd65b613878b3a66e (diff) | |
download | rails-8cda132136a766621b4c976cb1df7007d12ee6b5.tar.gz rails-8cda132136a766621b4c976cb1df7007d12ee6b5.tar.bz2 rails-8cda132136a766621b4c976cb1df7007d12ee6b5.zip |
Make InheritableOptions's constructor more flexible.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/configurable.rb | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/ordered_options.rb | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/configurable.rb b/activesupport/lib/active_support/configurable.rb index 36634bd7f3..3d91560833 100644 --- a/activesupport/lib/active_support/configurable.rb +++ b/activesupport/lib/active_support/configurable.rb @@ -30,7 +30,7 @@ module ActiveSupport superclass.config.inheritable_copy else # create a new "anonymous" class that will host the compiled reader methods - Class.new(Configuration).new({}) + Class.new(Configuration).new end end diff --git a/activesupport/lib/active_support/ordered_options.rb b/activesupport/lib/active_support/ordered_options.rb index 2b67e72cff..99c6c5a0c0 100644 --- a/activesupport/lib/active_support/ordered_options.rb +++ b/activesupport/lib/active_support/ordered_options.rb @@ -36,8 +36,12 @@ module ActiveSupport #:nodoc: end class InheritableOptions < OrderedOptions - def initialize(parent) - super() { |h,k| parent[k] } + def initialize(parent = nil) + if parent + super() { |h,k| parent[k] } + else + super() + end end def inheritable_copy |