aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-07-05 01:06:51 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-07-05 01:06:51 +0000
commitf384622a20bfa701b5bce9582ce58d8235ed0185 (patch)
treed4f41c5214bdb84a6fc40fd100c2c5ad493cf9a2 /activerecord/lib/active_record/associations.rb
parent532627452d0e581eb263499ccf84cf92f27de4d8 (diff)
downloadrails-f384622a20bfa701b5bce9582ce58d8235ed0185.tar.gz
rails-f384622a20bfa701b5bce9582ce58d8235ed0185.tar.bz2
rails-f384622a20bfa701b5bce9582ce58d8235ed0185.zip
Doc fixes
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4538 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rwxr-xr-xactiverecord/lib/active_record/associations.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index d0bc72fcaf..a059993598 100755
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -1248,7 +1248,7 @@ module ActiveRecord
extension_module_name.constantize
end
- class JoinDependency
+ class JoinDependency # :nodoc:
attr_reader :joins, :reflections, :table_aliases
def initialize(base, associations, joins)
@@ -1348,7 +1348,7 @@ module ActiveRecord
return association
end
- class JoinBase
+ class JoinBase # :nodoc:
attr_reader :active_record, :table_joins
delegate :table_name, :column_names, :primary_key, :reflections, :sanitize_sql, :to => :active_record
@@ -1393,7 +1393,7 @@ module ActiveRecord
end
end
- class JoinAssociation < JoinBase
+ class JoinAssociation < JoinBase # :nodoc:
attr_reader :reflection, :parent, :aliased_table_name, :aliased_prefix, :aliased_join_table_name, :parent_table_name
delegate :options, :klass, :through_reflection, :source_reflection, :to => :reflection