aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/join_dependency.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-11-07 12:37:03 -0500
committerYves Senn <yves.senn@gmail.com>2015-11-07 12:37:03 -0500
commit3aa5f2c203f1161a63a1e5be5b5263c339e2653b (patch)
treecad907523f56c1546d98e37239596e35b431f87c /activerecord/lib/active_record/associations/join_dependency.rb
parent80f710cc04be2243eb4aeccfe316ea981ac44691 (diff)
downloadrails-3aa5f2c203f1161a63a1e5be5b5263c339e2653b.tar.gz
rails-3aa5f2c203f1161a63a1e5be5b5263c339e2653b.tar.bz2
rails-3aa5f2c203f1161a63a1e5be5b5263c339e2653b.zip
docs, `ActiveRecord::JoinDependency` is not part of the public API.
[ci skip] While `JoinDependency` and `JoinDependency::Aliases` were nodoced, the inner `Table` class made them appear in the API.
Diffstat (limited to 'activerecord/lib/active_record/associations/join_dependency.rb')
-rw-r--r--activerecord/lib/active_record/associations/join_dependency.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/join_dependency.rb b/activerecord/lib/active_record/associations/join_dependency.rb
index 9f183c3e7e..0e4e951269 100644
--- a/activerecord/lib/active_record/associations/join_dependency.rb
+++ b/activerecord/lib/active_record/associations/join_dependency.rb
@@ -32,7 +32,7 @@ module ActiveRecord
@alias_cache[node][column]
end
- class Table < Struct.new(:node, :columns)
+ class Table < Struct.new(:node, :columns) # :nodoc:
def table
Arel::Nodes::TableAlias.new node.table, node.aliased_table_name
end