Class: Storing::Updater
- Inherits:
-
AbstractUpdater
- Object
- AbstractUpdater
- Storing::Updater
- Defined in:
- lib/storing/updater.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
-
#initialize(entity, mapper, store) ⇒ Updater
constructor
A new instance of Updater.
- #update ⇒ Object
Constructor Details
#initialize(entity, mapper, store) ⇒ Updater
Returns a new instance of Updater.
12 13 14 15 16 |
# File 'lib/storing/updater.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/updater.rb', line 10 def entity @entity end |
#mapper ⇒ Object (readonly)
Returns the value of attribute mapper.
10 11 12 |
# File 'lib/storing/updater.rb', line 10 def mapper @mapper end |
#store ⇒ Object (readonly)
Returns the value of attribute store.
10 11 12 |
# File 'lib/storing/updater.rb', line 10 def store @store end |
Class Method Details
.update(entity, mapper, store) ⇒ Object
6 7 8 |
# File 'lib/storing/updater.rb', line 6 def self.update entity, mapper, store new(entity, mapper, store).update end |
Instance Method Details
#update ⇒ Object
18 19 20 |
# File 'lib/storing/updater.rb', line 18 def update store.update(data) end |