diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 20:39:41 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:55 -0800 |
commit | e6385a912acf654eb4ea506f48fbea965daf15be (patch) | |
tree | 05f8b16aa7365b442c3626bbe802732829691872 /activesupport/lib | |
parent | 2f9fc1fe015839b77f1e1ec5a3252e58cd7ae2f1 (diff) | |
download | rails-e6385a912acf654eb4ea506f48fbea965daf15be.tar.gz rails-e6385a912acf654eb4ea506f48fbea965daf15be.tar.bz2 rails-e6385a912acf654eb4ea506f48fbea965daf15be.zip |
hash/conversions.rb needs active_support/core_ext/object/blank because it uses blank?
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/hash/conversions.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/conversions.rb b/activesupport/lib/active_support/core_ext/hash/conversions.rb index 35ccec5df4..48fb6050c6 100644 --- a/activesupport/lib/active_support/core_ext/hash/conversions.rb +++ b/activesupport/lib/active_support/core_ext/hash/conversions.rb @@ -1,6 +1,7 @@ require 'active_support/time' require 'active_support/core_ext/array/wrap' require 'active_support/core_ext/hash/reverse_merge' +require 'active_support/core_ext/object/blank' class Hash # This module exists to decorate files deserialized using Hash.from_xml with |