Class: Mongoid::Relations::Cascading::Strategy
- Defined in:
- lib/mongoid/relations/cascading/strategy.rb
Instance Attribute Summary collapse
-
#document ⇒ Object
Returns the value of attribute document.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#relation ⇒ Object
Returns the value of attribute relation.
Instance Method Summary collapse
-
#initialize(document, metadata) ⇒ Strategy
constructor
Initialize the new cascade strategy, which will set up the relation and the metadata.
Constructor Details
#initialize(document, metadata) ⇒ Strategy
Initialize the new cascade strategy, which will set up the relation and the metadata.
19 20 21 22 |
# File 'lib/mongoid/relations/cascading/strategy.rb', line 19 def initialize(document, ) @document, @metadata = document, @relation = document.send(.name) end |
Instance Attribute Details
#document ⇒ Object
Returns the value of attribute document.
7 8 9 |
# File 'lib/mongoid/relations/cascading/strategy.rb', line 7 def document @document end |
#metadata ⇒ Object
Returns the value of attribute metadata.
7 8 9 |
# File 'lib/mongoid/relations/cascading/strategy.rb', line 7 def @metadata end |
#relation ⇒ Object
Returns the value of attribute relation.
7 8 9 |
# File 'lib/mongoid/relations/cascading/strategy.rb', line 7 def relation @relation end |