Class: Storing::Deleter
- Inherits:
-
AbstractDeleter
- Object
- AbstractDeleter
- Storing::Deleter
- Defined in:
- lib/storing/deleter.rb
Instance Attribute Summary collapse
-
#entity ⇒ Object
readonly
Returns the value of attribute entity.
-
#mapper ⇒ Object
readonly
Returns the value of attribute mapper.
-
#store ⇒ Object
readonly
Returns the value of attribute store.
Class Method Summary collapse
Instance Method Summary collapse
- #delete ⇒ Object
-
#initialize(entity, mapper, store) ⇒ Deleter
constructor
A new instance of Deleter.
Constructor Details
#initialize(entity, mapper, store) ⇒ Deleter
Returns a new instance of Deleter.
12 13 14 15 16 |
# File 'lib/storing/deleter.rb', line 12 def initialize entity, mapper, store @entity = entity @mapper = mapper @store = store end |
Instance Attribute Details
#entity ⇒ Object (readonly)
Returns the value of attribute entity.
10 11 12 |
# File 'lib/storing/deleter.rb', line 10 def entity @entity end |
#mapper ⇒ Object (readonly)
Returns the value of attribute mapper.
10 11 12 |
# File 'lib/storing/deleter.rb', line 10 def mapper @mapper end |
#store ⇒ Object (readonly)
Returns the value of attribute store.
10 11 12 |
# File 'lib/storing/deleter.rb', line 10 def store @store end |
Class Method Details
.delete(entity, mapper, store) ⇒ Object
6 7 8 |
# File 'lib/storing/deleter.rb', line 6 def self.delete entity, mapper, store new(entity, mapper, store).delete end |
Instance Method Details
#delete ⇒ Object
18 19 20 |
# File 'lib/storing/deleter.rb', line 18 def delete store.delete(data) end |