Class: BigRecord::ArReflection::MacroReflection

Inherits:
Object
  • Object
show all
Defined in:
lib/big_record/ar_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

ArAggregateReflection, ArAssociationReflection

Instance Attribute Summary

Instance Method Summary

Constructor Details

- (MacroReflection) initialize(macro, name, options, big_record)

A new instance of MacroReflection



74
75
76
# 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

Instance Attribute Details

- (Object) big_record (readonly)

Returns the value of attribute big_record



73
74
75
# File 'lib/big_record/ar_reflection.rb', line 73

def big_record
  @big_record
end

Instance Method Details

- (Object) ==(other_aggregation)



104
105
106
# 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

- (Object) class_name



100
101
102
# File 'lib/big_record/ar_reflection.rb', line 100

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

- (Object) klass

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/big_record/ar_reflection.rb', line 98

def klass() end

- (Object) macro

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/big_record/ar_reflection.rb', line 86

def macro
  @macro
end

- (Object) name

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/big_record/ar_reflection.rb', line 80

def name
  @name
end

- (Object) options

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/big_record/ar_reflection.rb', line 92

def options
  @options
end