aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2015-04-20 16:47:12 +0100
committerAndrew White <andyw@pixeltrix.co.uk>2015-04-21 08:48:22 -0400
commitac2b7a5c4d46b74c12ca8a67e73b803e7726e115 (patch)
tree4d1328df8f682102510b6718fe7c9743fe5a1699 /activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb
parentb12abe673306f2b5298b7a296c74ddc9061d2fec (diff)
downloadrails-ac2b7a5c4d46b74c12ca8a67e73b803e7726e115.tar.gz
rails-ac2b7a5c4d46b74c12ca8a67e73b803e7726e115.tar.bz2
rails-ac2b7a5c4d46b74c12ca8a67e73b803e7726e115.zip
Rename association option :class to :anonymous_class
In 1f006c an option was added called :class to allow passing anonymous classes to association definitions. Since using :class instead of :class_name is a fairly common typo even amongst experienced developers this can result in hard to debug errors arising in raise_on_type_mismatch? To fix this we're renaming the option from :class to :anonymous_class as that is a more correct description of what the option is for. Since this was an internal, undocumented option there is no need for a deprecation. Fixes #19659
Diffstat (limited to 'activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb')
-rw-r--r--activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb b/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb
index 97b57a6a55..ffd9c9d6fc 100644
--- a/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb
+++ b/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb
@@ -78,7 +78,7 @@ module ActiveRecord::Associations::Builder
join_model.table_name_resolver = habtm
join_model.class_resolver = lhs_model
- join_model.add_left_association :left_side, class: lhs_model
+ join_model.add_left_association :left_side, anonymous_class: lhs_model
join_model.add_right_association association_name, belongs_to_options(options)
join_model
end