diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-11-07 12:37:03 -0500 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-11-07 12:37:03 -0500 |
commit | 3aa5f2c203f1161a63a1e5be5b5263c339e2653b (patch) | |
tree | cad907523f56c1546d98e37239596e35b431f87c /activerecord | |
parent | 80f710cc04be2243eb4aeccfe316ea981ac44691 (diff) | |
download | rails-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')
-rw-r--r-- | activerecord/lib/active_record/associations/join_dependency.rb | 2 |
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 |