aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorkeepcosmos <keepcosmos@gmail.com>2015-05-26 22:02:41 +0900
committerkeepcosmos <keepcosmos@gmail.com>2015-05-26 22:06:53 +0900
commit995a473f0c3ed1804778b163e0b7d02d410568a5 (patch)
tree2411dd71cbf40cbcfb2d7a67f50feea07e6b644e /activerecord/lib/active_record/associations.rb
parent31cc1c2ef320f554120a1736eaf087aca19464a6 (diff)
downloadrails-995a473f0c3ed1804778b163e0b7d02d410568a5.tar.gz
rails-995a473f0c3ed1804778b163e0b7d02d410568a5.tar.bz2
rails-995a473f0c3ed1804778b163e0b7d02d410568a5.zip
add `extend` option on `has_and_belongs_to_many`.
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rw-r--r--activerecord/lib/active_record/associations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 779a3fbbbd..1ca648d48d 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -1737,7 +1737,7 @@ module ActiveRecord
hm_options[:through] = middle_reflection.name
hm_options[:source] = join_model.right_reflection.name
- [:before_add, :after_add, :before_remove, :after_remove, :autosave, :validate, :join_table, :class_name].each do |k|
+ [:before_add, :after_add, :before_remove, :after_remove, :autosave, :validate, :join_table, :class_name, :extend].each do |k|
hm_options[k] = options[k] if options.key? k
end