Class: ActiveFedora::Reflection::ClassMethods::MacroReflection
- Inherits:
-
Object
- Object
- ActiveFedora::Reflection::ClassMethods::MacroReflection
- Defined in:
- lib/active_fedora/reflection.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#macro ⇒ Object
readonly
Returns the value of attribute macro.
-
#name ⇒ Object
readonly
Returns the name of the macro.
-
#options ⇒ Object
readonly
Returns the hash of options used for the macro.
Instance Method Summary collapse
-
#build_association(*options) ⇒ Object
Returns a new, unsaved instance of the associated class.
-
#class_name ⇒ Object
Returns the class name for the macro.
-
#collection? ⇒ Boolean
Returns whether or not this association reflection is for a collection association.
-
#initialize(macro, name, options, active_fedora) ⇒ MacroReflection
constructor
A new instance of MacroReflection.
-
#klass ⇒ Object
Returns the class for the macro.
Constructor Details
#initialize(macro, name, options, active_fedora) ⇒ MacroReflection
64 65 66 |
# File 'lib/active_fedora/reflection.rb', line 64 def initialize(macro, name, , active_fedora) @macro, @name, , @active_fedora = macro, name, , active_fedora end |
Instance Attribute Details
#macro ⇒ Object (readonly)
Returns the value of attribute macro.
87 88 89 |
# File 'lib/active_fedora/reflection.rb', line 87 def macro @macro end |
#name ⇒ Object (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 |
#options ⇒ Object (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 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(*) klass.new(*) end |
#class_name ⇒ Object
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 ||= [: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.
109 110 111 |
# File 'lib/active_fedora/reflection.rb', line 109 def collection? @collection end |
#klass ⇒ Object
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 |