Class: ActiveRecord::Reflection::MacroReflection

Inherits:
Object
  • Object
show all
Defined in:
lib/active_record/reflection.rb

Overview

Abstract base class for AggregateReflection and AssociationReflection that describes the interface available for both of those classes. Objects of AggregateReflection and AssociationReflection are returned by the Reflection::ClassMethods.

Direct Known Subclasses

AggregateReflection, AssociationReflection

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(macro, name, options, active_record) ⇒ MacroReflection

Returns a new instance of MacroReflection.



61
62
63
# File 'lib/active_record/reflection.rb', line 61

def initialize(macro, name, options, active_record)
  @macro, @name, @options, @active_record = macro, name, options, active_record
end

Instance Attribute Details

#active_recordObject (readonly)

Returns the value of attribute active_record.



60
61
62
# File 'lib/active_record/reflection.rb', line 60

def active_record
  @active_record
end

Instance Method Details

#==(other_aggregation) ⇒ Object



91
92
93
# File 'lib/active_record/reflection.rb', line 91

def ==(other_aggregation)
  name == other_aggregation.name && other_aggregation.options && active_record == other_aggregation.active_record
end

#class_nameObject



87
88
89
# File 'lib/active_record/reflection.rb', line 87

def class_name
  @class_name ||= name_to_class_name(name.id2name)
end

#klassObject

Returns the class for the macro, so “composed_of :balance, :class_name => ‘Money’” would return the Money class and “has_many :clients” would return the Client class.



85
# File 'lib/active_record/reflection.rb', line 85

def klass() end

#macroObject

Returns the name of the macro, so it would return :composed_of for “composed_of :balance, :class_name => ‘Money’” or :has_many for “has_many :clients”.



73
74
75
# File 'lib/active_record/reflection.rb', line 73

def macro
  @macro
end

#nameObject

Returns the name of the macro, so it would return :balance for “composed_of :balance, :class_name => ‘Money’” or :clients for “has_many :clients”.



67
68
69
# File 'lib/active_record/reflection.rb', line 67

def name
  @name
end

#optionsObject

Returns the hash of options used for the macro, so it would return { :class_name => “Money” } for “composed_of :balance, :class_name => ‘Money’” or {} for “has_many :clients”.



79
80
81
# File 'lib/active_record/reflection.rb', line 79

def options
  @options
end