Module: ActiveRecord::Delegation::DelegateCache

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

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#generate_relation_method(method) ⇒ Object



50
51
52
# File 'lib/active_record/relation/delegation.rb', line 50

def generate_relation_method(method)
  generated_relation_methods.generate_method(method)
end

#inherited(child_class) ⇒ Object



45
46
47
48
# File 'lib/active_record/relation/delegation.rb', line 45

def inherited(child_class)
  child_class.initialize_relation_delegate_cache
  super
end

#initialize_relation_delegate_cacheObject



30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/active_record/relation/delegation.rb', line 30

def initialize_relation_delegate_cache
  @relation_delegate_cache = cache = {}
  Delegation.delegated_classes.each do |klass|
    delegate = Class.new(klass) {
      include ClassSpecificRelation
    }
    include_relation_methods(delegate)
    mangled_name = klass.name.gsub("::", "_")
    const_set mangled_name, delegate
    private_constant mangled_name

    cache[klass] = delegate
  end
end

#relation_delegate_class(klass) ⇒ Object



26
27
28
# File 'lib/active_record/relation/delegation.rb', line 26

def relation_delegate_class(klass)
  @relation_delegate_cache[klass]
end