Module: ActiveRecord::Delegation::DelegateCache

Included in:
Base
Defined in:
activerecord/lib/active_record/relation/delegation.rb

Instance Method Summary collapse

Instance Method Details

#inherited(child_class) ⇒ Object



27
28
29
30
# File 'activerecord/lib/active_record/relation/delegation.rb', line 27

def inherited(child_class)
  child_class.initialize_relation_delegate_cache
  super
end

#initialize_relation_delegate_cacheObject

:nodoc:



12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'activerecord/lib/active_record/relation/delegation.rb', line 12

def initialize_relation_delegate_cache # :nodoc:
  @relation_delegate_cache = cache = {}
  [
    ActiveRecord::Relation,
    ActiveRecord::Associations::CollectionProxy,
    ActiveRecord::AssociationRelation
  ].each do |klass|
    delegate = Class.new(klass) {
      include ClassSpecificRelation
    }
    const_set klass.name.gsub('::', '_'), delegate
    cache[klass] = delegate
  end
end

#relation_delegate_class(klass) ⇒ Object

:nodoc:



8
9
10
# File 'activerecord/lib/active_record/relation/delegation.rb', line 8

def relation_delegate_class(klass) # :nodoc:
  @relation_delegate_cache[klass]
end