Class: ActiveFedora::Reflection::ClassMethods::MacroReflection

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

Direct Known Subclasses

AssociationReflection

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of MacroReflection.



64
65
66
# File 'lib/active_fedora/reflection.rb', line 64

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

Instance Attribute Details

#macroObject (readonly)

Returns the value of attribute macro.



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

def macro
  @macro
end

#nameObject (readonly)

Returns the name of the macro.

composed_of :balance, :class_name => 'Money' returns :balance has_many :clients returns :clients



78
79
80
# File 'lib/active_fedora/reflection.rb', line 78

def name
  @name
end

#optionsObject (readonly)

Returns the hash of options used for the macro.

composed_of :balance, :class_name => 'Money' returns { :class_name => "Money" } has_many :clients returns {}



85
86
87
# File 'lib/active_fedora/reflection.rb', line 85

def options
  @options
end

Instance Method Details

#build_association(*options) ⇒ Object

Returns a new, unsaved instance of the associated class. options will be passed to the class’s constructor.



70
71
72
# File 'lib/active_fedora/reflection.rb', line 70

def build_association(*options)
  klass.new(*options)
end

#class_nameObject

Returns the class name for the macro.

composed_of :balance, :class_name => 'Money' returns 'Money' has_many :clients returns 'Client'



101
102
103
# File 'lib/active_fedora/reflection.rb', line 101

def class_name
  @class_name ||= options[:class_name] || derive_class_name
end

#collection?Boolean

Returns whether or not this association reflection is for a collection association. Returns true if the macro is either has_many or has_and_belongs_to_many, false otherwise.

Returns:

  • (Boolean)


109
110
111
# File 'lib/active_fedora/reflection.rb', line 109

def collection?
  @collection
end

#klassObject

Returns the class for the macro.

composed_of :balance, :class_name => 'Money' returns the Money class has_many :clients returns the Client class



57
58
59
60
# File 'lib/active_fedora/reflection.rb', line 57

def klass
  #@klass ||= active_record.send(:compute_type, class_name)
  @klass ||= class_name
end