Module: ActiveRecord::Delegation::DelegateCache
- Included in:
- Base
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/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
38 39 40 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/relation/delegation.rb', line 38 def generate_relation_method(method) generated_relation_methods.generate_method(method) end |
#inherited(child_class) ⇒ Object
33 34 35 36 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/relation/delegation.rb', line 33 def inherited(child_class) child_class.initialize_relation_delegate_cache super end |
#initialize_relation_delegate_cache ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/relation/delegation.rb', line 13 def initialize_relation_delegate_cache @relation_delegate_cache = cache = {} [ ActiveRecord::Relation, ActiveRecord::Associations::CollectionProxy, ActiveRecord::AssociationRelation, ActiveRecord::DisableJoinsAssociationRelation ].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
9 10 11 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/relation/delegation.rb', line 9 def relation_delegate_class(klass) @relation_delegate_cache[klass] end |