class BigRecord::ArReflection::MacroReflection

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.

Attributes

big_record[R]

Public Class Methods

new(macro, name, options, big_record) click to toggle source
# File lib/big_record/ar_reflection.rb, line 74
def initialize(macro, name, options, big_record)
  @macro, @name, @options, @big_record = macro, name, options, big_record
end

Public Instance Methods

==(other_aggregation) click to toggle source
# File lib/big_record/ar_reflection.rb, line 104
def ==(other_aggregation)
  name == other_aggregation.name && other_aggregation.options && big_record == other_aggregation.big_record
end
class_name() click to toggle source
# File lib/big_record/ar_reflection.rb, line 100
def class_name
  @class_name ||= name_to_class_name(name.id2name)
end
klass() click to toggle source

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.

# File lib/big_record/ar_reflection.rb, line 98
def klass() end
macro() click to toggle source

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”.

# File lib/big_record/ar_reflection.rb, line 86
def macro
  @macro
end
name() click to toggle source

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

# File lib/big_record/ar_reflection.rb, line 80
def name
  @name
end
options() click to toggle source

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”.

# File lib/big_record/ar_reflection.rb, line 92
def options
  @options
end