diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2012-07-26 03:13:07 -0700 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2012-07-26 03:13:07 -0700 |
commit | b1d7283b2ac6763973e1a64475fc1c279cec8775 (patch) | |
tree | 1e6edaa584388785df640721b91174d6c8795336 /activerecord | |
parent | 88c205ba5313afaf4ba7e0ace43274a2c84a653b (diff) | |
parent | 8cf300c9060f9aa6d8754b80e9dca6c44e6145d1 (diff) | |
download | rails-b1d7283b2ac6763973e1a64475fc1c279cec8775.tar.gz rails-b1d7283b2ac6763973e1a64475fc1c279cec8775.tar.bz2 rails-b1d7283b2ac6763973e1a64475fc1c279cec8775.zip |
Merge pull request #7167 from route/missed_extend
Missed extend for eager_autoload
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 7df9edfc98..05715feb97 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -104,6 +104,7 @@ module ActiveRecord # See ActiveRecord::Associations::ClassMethods for documentation. module Associations # :nodoc: + extend ActiveSupport::Autoload extend ActiveSupport::Concern # These classes will be loaded when associations are created. |