diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-21 01:58:58 -0300 |
---|---|---|
committer | Xavier Noria <fxn@ubuntu.(none)> | 2010-04-21 07:45:29 -0700 |
commit | 961aa70e4ada0aa2f1bfde2e8f8976e8003be83e (patch) | |
tree | 6a0e4c196fa0fe989f0df122eab22528d7edd72a /activerecord/lib | |
parent | 5467728d833065ce70afed122b4c6971f709aeb9 (diff) | |
download | rails-961aa70e4ada0aa2f1bfde2e8f8976e8003be83e.tar.gz rails-961aa70e4ada0aa2f1bfde2e8f8976e8003be83e.tar.bz2 rails-961aa70e4ada0aa2f1bfde2e8f8976e8003be83e.zip |
Some require indifferent_access added
Signed-off-by: Xavier Noria <fxn@ubuntu.(none)>
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/nested_attributes.rb | 1 | ||||
-rw-r--r-- | activerecord/lib/active_record/relation/finder_methods.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/nested_attributes.rb b/activerecord/lib/active_record/nested_attributes.rb index 70a460d41d..6718b4a69d 100644 --- a/activerecord/lib/active_record/nested_attributes.rb +++ b/activerecord/lib/active_record/nested_attributes.rb @@ -1,6 +1,7 @@ require 'active_support/core_ext/hash/except' require 'active_support/core_ext/object/try' require 'active_support/core_ext/object/blank' +require 'active_support/core_ext/hash/indifferent_access' module ActiveRecord module NestedAttributes #:nodoc: diff --git a/activerecord/lib/active_record/relation/finder_methods.rb b/activerecord/lib/active_record/relation/finder_methods.rb index a26f1c0ac8..3514d0a259 100644 --- a/activerecord/lib/active_record/relation/finder_methods.rb +++ b/activerecord/lib/active_record/relation/finder_methods.rb @@ -1,4 +1,5 @@ require 'active_support/core_ext/object/blank' +require 'active_support/core_ext/hash/indifferent_access' module ActiveRecord module FinderMethods |