Module: ActiveRecord::Delegation::DelegateCache
- Included in:
- Base
- Defined in:
- activerecord/lib/active_record/relation/delegation.rb
Overview
:nodoc:
Instance Method Summary collapse
- #generate_relation_method(method) ⇒ Object
- #inherited(child_class) ⇒ Object
- #initialize_relation_delegate_cache ⇒ Object
- #relation_delegate_class(klass) ⇒ Object
Instance Method Details
#generate_relation_method(method) ⇒ Object
36 37 38 |
# File 'activerecord/lib/active_record/relation/delegation.rb', line 36 def generate_relation_method(method) generated_relation_methods.generate_method(method) end |
#inherited(child_class) ⇒ Object
31 32 33 34 |
# File 'activerecord/lib/active_record/relation/delegation.rb', line 31 def inherited(child_class) child_class.initialize_relation_delegate_cache super end |
#initialize_relation_delegate_cache ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'activerecord/lib/active_record/relation/delegation.rb', line 12 def initialize_relation_delegate_cache @relation_delegate_cache = cache = {} [ ActiveRecord::Relation, ActiveRecord::Associations::CollectionProxy, ActiveRecord::AssociationRelation ].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
8 9 10 |
# File 'activerecord/lib/active_record/relation/delegation.rb', line 8 def relation_delegate_class(klass) @relation_delegate_cache[klass] end |