Class: ActiveRecord::Reflection::MacroReflection
- Inherits:
-
Object
- Object
- ActiveRecord::Reflection::MacroReflection
- 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
Instance Attribute Summary collapse
-
#active_record ⇒ Object
readonly
Returns the value of attribute active_record.
Instance Method Summary collapse
- #==(other_aggregation) ⇒ Object
- #class_name ⇒ Object
-
#initialize(macro, name, options, active_record) ⇒ MacroReflection
constructor
A new instance of MacroReflection.
-
#klass ⇒ Object
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.
-
#macro ⇒ Object
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”.
-
#name ⇒ Object
Returns the name of the macro, so it would return :balance for “composed_of :balance, :class_name => ‘Money’” or :clients for “has_many :clients”.
-
#options ⇒ Object
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”.
Constructor Details
#initialize(macro, name, options, active_record) ⇒ MacroReflection
Returns a new instance of MacroReflection.
74 75 76 |
# File 'lib/active_record/reflection.rb', line 74 def initialize(macro, name, , active_record) @macro, @name, @options, @active_record = macro, name, , active_record end |
Instance Attribute Details
#active_record ⇒ Object (readonly)
Returns the value of attribute active_record.
73 74 75 |
# File 'lib/active_record/reflection.rb', line 73 def active_record @active_record end |
Instance Method Details
#==(other_aggregation) ⇒ Object
104 105 106 |
# File 'lib/active_record/reflection.rb', line 104 def ==(other_aggregation) name == other_aggregation.name && other_aggregation. && active_record == other_aggregation.active_record end |
#class_name ⇒ Object
100 101 102 |
# File 'lib/active_record/reflection.rb', line 100 def class_name @class_name ||= name_to_class_name(name.id2name) end |
#klass ⇒ Object
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.
98 |
# File 'lib/active_record/reflection.rb', line 98 def klass() end |
#macro ⇒ Object
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”.
86 87 88 |
# File 'lib/active_record/reflection.rb', line 86 def macro @macro end |
#name ⇒ Object
Returns the name of the macro, so it would return :balance for “composed_of :balance, :class_name => ‘Money’” or :clients for “has_many :clients”.
80 81 82 |
# File 'lib/active_record/reflection.rb', line 80 def name @name end |
#options ⇒ Object
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”.
92 93 94 |
# File 'lib/active_record/reflection.rb', line 92 def @options end |