diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-07-19 06:38:20 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-07-19 06:38:20 -0700 |
commit | 30289c76830430d361a8c2045d54103c435376c2 (patch) | |
tree | 2e3b5d1ba7590911699515b88225213503b12124 /activerecord | |
parent | 73efb68dc9cbecaad81598d6653cb3bb1927a40d (diff) | |
parent | 9db2d10b1172504e252d192b5c177cb512463875 (diff) | |
download | rails-30289c76830430d361a8c2045d54103c435376c2.tar.gz rails-30289c76830430d361a8c2045d54103c435376c2.tar.bz2 rails-30289c76830430d361a8c2045d54103c435376c2.zip |
Merge pull request #2148 from norman/master
Explicitly require Active Support dependencies (master)
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/migration.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index c459846264..507f345ef5 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -1,3 +1,5 @@ +require "active_support/core_ext/module/delegation" +require "active_support/core_ext/class/attribute_accessors" require "active_support/core_ext/array/wrap" module ActiveRecord |