Class: Mongoid::Associations::Options
- Defined in:
- lib/mongoid/associations/options.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#foreign_key ⇒ Object
Return the foreign key based off the association name.
-
#initialize(attributes = {}) ⇒ Options
constructor
Create the new
Options
object, which provides convenience methods for accessing values out of an optionsHash
. -
#inverse_of ⇒ Object
Returns the name of the inverse_of association.
-
#klass ⇒ Object
Return a
Class
for the options. -
#name ⇒ Object
Returns the association name of the options.
-
#parent_key ⇒ Object
Returns the parent foreign key association name.
-
#polymorphic ⇒ Object
Returns whether or not this association is polymorphic.
Constructor Details
#initialize(attributes = {}) ⇒ Options
Create the new Options
object, which provides convenience methods for accessing values out of an options Hash
.
8 9 10 |
# File 'lib/mongoid/associations/options.rb', line 8 def initialize(attributes = {}) @attributes = attributes end |
Instance Method Details
#foreign_key ⇒ Object
Return the foreign key based off the association name.
13 14 15 |
# File 'lib/mongoid/associations/options.rb', line 13 def foreign_key name.to_s.foreign_key end |
#inverse_of ⇒ Object
Returns the name of the inverse_of association
18 19 20 |
# File 'lib/mongoid/associations/options.rb', line 18 def inverse_of @attributes[:inverse_of] end |
#klass ⇒ Object
Return a Class
for the options. If a class_name was provided, then the constantized class_name will be returned. If not, a constant based on the association name will be returned.
25 26 27 28 |
# File 'lib/mongoid/associations/options.rb', line 25 def klass class_name = @attributes[:class_name] class_name ? class_name.constantize : name.to_s.classify.constantize end |
#name ⇒ Object
Returns the association name of the options.
31 32 33 |
# File 'lib/mongoid/associations/options.rb', line 31 def name @attributes[:name] end |
#parent_key ⇒ Object
Returns the parent foreign key association name.
36 37 38 |
# File 'lib/mongoid/associations/options.rb', line 36 def parent_key @attributes[:parent_key] end |
#polymorphic ⇒ Object
Returns whether or not this association is polymorphic.
41 42 43 |
# File 'lib/mongoid/associations/options.rb', line 41 def polymorphic @attributes[:polymorphic] == true end |