Class: ActiveRecord::Associations::AssociationScope::ReflectionProxy
- Inherits:
-
SimpleDelegator
- Object
- SimpleDelegator
- ActiveRecord::Associations::AssociationScope::ReflectionProxy
- Defined in:
- lib/active_record/associations/association_scope.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#aliased_table ⇒ Object
readonly
Returns the value of attribute aliased_table.
Instance Method Summary collapse
- #all_includes ⇒ Object
-
#initialize(reflection, aliased_table) ⇒ ReflectionProxy
constructor
A new instance of ReflectionProxy.
Constructor Details
#initialize(reflection, aliased_table) ⇒ ReflectionProxy
Returns a new instance of ReflectionProxy.
101 102 103 104 |
# File 'lib/active_record/associations/association_scope.rb', line 101 def initialize(reflection, aliased_table) super(reflection) @aliased_table = aliased_table end |
Instance Attribute Details
#aliased_table ⇒ Object (readonly)
Returns the value of attribute aliased_table.
99 100 101 |
# File 'lib/active_record/associations/association_scope.rb', line 99 def aliased_table @aliased_table end |
Instance Method Details
#all_includes ⇒ Object
106 |
# File 'lib/active_record/associations/association_scope.rb', line 106 def all_includes; nil; end |