Class: ActiveRecord::Associations::AssociationScope::ReflectionProxy

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
activerecord/lib/active_record/associations/association_scope.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reflection, alias_name) ⇒ ReflectionProxy

Returns a new instance of ReflectionProxy.



104
105
106
107
# File 'activerecord/lib/active_record/associations/association_scope.rb', line 104

def initialize(reflection, alias_name)
  super(reflection)
  @alias_name = alias_name
end

Instance Attribute Details

#alias_nameObject (readonly)

Returns the value of attribute alias_name.



102
103
104
# File 'activerecord/lib/active_record/associations/association_scope.rb', line 102

def alias_name
  @alias_name
end

#nextObject

Returns the value of attribute next.



101
102
103
# File 'activerecord/lib/active_record/associations/association_scope.rb', line 101

def next
  @next
end

Instance Method Details

#all_includesObject



109
# File 'activerecord/lib/active_record/associations/association_scope.rb', line 109

def all_includes; nil; end