Module: ActiveAny::Delegation::DelegateCache
- Included in:
- Base
- Defined in:
- lib/active_any/relation/delegation.rb
Instance Method Summary collapse
- #inherited(child_class) ⇒ Object
- #initialize_relation_delegate_cache ⇒ Object
- #relation_delegate_class(klass) ⇒ Object
Instance Method Details
#inherited(child_class) ⇒ Object
28 29 30 31 |
# File 'lib/active_any/relation/delegation.rb', line 28 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 |
# File 'lib/active_any/relation/delegation.rb', line 12 def initialize_relation_delegate_cache @relation_delegate_cache = cache = {} [ ActiveAny::Relation, ActiveAny::Associations::CollectionProxy, ActiveAny::AssociationRelation ].each do |klass| delegate = Class.new(klass) { include ClassSpecificRelation } 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 'lib/active_any/relation/delegation.rb', line 8 def relation_delegate_class(klass) @relation_delegate_cache[klass] end |