aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-07-08 12:26:36 +0200
committerYves Senn <yves.senn@gmail.com>2015-10-13 14:23:24 +0200
commitf94bf50d35eab7661b47a97904a2343aa1159586 (patch)
treef87869db548a263052b055cfaaf541aa5818c1f9 /activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb
parentba185c6467081ca765bbaefa84157b889c1cbce5 (diff)
downloadrails-f94bf50d35eab7661b47a97904a2343aa1159586.tar.gz
rails-f94bf50d35eab7661b47a97904a2343aa1159586.tar.bz2
rails-f94bf50d35eab7661b47a97904a2343aa1159586.zip
docs, add missing `:nodoc: for `Associations::Builder`. [ci skip]
This class is only used internally. We should keep it out of public documentation. This patch adds nodoc for `ActiveRecord::Associations::Builder` and everything nested within.
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.rb6
1 files changed, 3 insertions, 3 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 b18d99d54e..a5c9f1666e 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
@@ -1,9 +1,9 @@
-module ActiveRecord::Associations::Builder
+module ActiveRecord::Associations::Builder # :nodoc:
class HasAndBelongsToMany # :nodoc:
- class JoinTableResolver
+ class JoinTableResolver # :nodoc:
KnownTable = Struct.new :join_table
- class KnownClass
+ class KnownClass # :nodoc:
def initialize(lhs_class, rhs_class_name)
@lhs_class = lhs_class
@rhs_class_name = rhs_class_name