aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-09-09 09:44:48 +0200
committerYves Senn <yves.senn@gmail.com>2014-09-09 10:00:30 +0200
commitd5580b91b64daeb114875f24f6d54bbf88428018 (patch)
tree0f0774a4cd5b70fa2adc2fbde98737451eab3f0b /activerecord/lib/active_record/attribute_methods.rb
parentc563656a48b81bbbf13b2c6e336af71f38434c77 (diff)
downloadrails-d5580b91b64daeb114875f24f6d54bbf88428018.tar.gz
rails-d5580b91b64daeb114875f24f6d54bbf88428018.tar.bz2
rails-d5580b91b64daeb114875f24f6d54bbf88428018.zip
Allow included modules to override association methods.
Closes #16684. This is achieved by always generating `GeneratedAssociationMethods` when `ActiveRecord::Base` is subclassed. When some of the included modules of `ActiveRecord::Base` were reordered this behavior was broken as `Core#initialize_generated_modules` was no longer called. Meaning that the module was generated on first access.
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods.rb')
-rw-r--r--activerecord/lib/active_record/attribute_methods.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb
index 43a3993898..36d0d63c71 100644
--- a/activerecord/lib/active_record/attribute_methods.rb
+++ b/activerecord/lib/active_record/attribute_methods.rb
@@ -69,6 +69,8 @@ module ActiveRecord
@generated_attribute_methods = GeneratedAttributeMethods.new { extend Mutex_m }
@attribute_methods_generated = false
include @generated_attribute_methods
+
+ super
end
# Generates all the attribute related methods for columns in the database