add missing :nodoc: marks to ActiveRecord::Delegation [ci skip]
This commit is contained in:
parent
246a95c140
commit
1dee54442f
@ -14,14 +14,14 @@ module Delegation # :nodoc:
|
||||
delegate :table_name, :quoted_table_name, :primary_key, :quoted_primary_key,
|
||||
:connection, :columns_hash, :to => :klass
|
||||
|
||||
module ClassSpecificRelation
|
||||
module ClassSpecificRelation # :nodoc:
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
included do
|
||||
@delegation_mutex = Mutex.new
|
||||
end
|
||||
|
||||
module ClassMethods
|
||||
module ClassMethods # :nodoc:
|
||||
def name
|
||||
superclass.name
|
||||
end
|
||||
@ -70,7 +70,7 @@ def method_missing(method, *args, &block)
|
||||
end
|
||||
end
|
||||
|
||||
module ClassMethods
|
||||
module ClassMethods # :nodoc:
|
||||
@@subclasses = ThreadSafe::Cache.new(:initial_capacity => 2)
|
||||
|
||||
def new(klass, *args)
|
||||
|
Loading…
Reference in New Issue
Block a user