Class: Anima::ConfigMigrator::Result
- Inherits:
-
Data
- Object
- Data
- Anima::ConfigMigrator::Result
- Defined in:
- lib/anima/config_migrator.rb
Overview
Outcome of a migration run.
Instance Attribute Summary collapse
-
#additions ⇒ Object
readonly
Returns the value of attribute additions.
-
#additions [Array<Addition>] keys that were added([Array<Addition>]) ⇒ Object
readonly
Outcome of a migration run.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#status [Symbol] :not_found, :up_to_date, or :updated([Symbol], : up_to_date) ⇒ Object
readonly
Outcome of a migration run.
Instance Attribute Details
#additions ⇒ Object (readonly)
Returns the value of attribute additions
32 33 34 |
# File 'lib/anima/config_migrator.rb', line 32 def additions @additions end |
#additions [Array<Addition>] keys that were added([Array<Addition>]) ⇒ Object (readonly)
Outcome of a migration run.
32 |
# File 'lib/anima/config_migrator.rb', line 32 Result = Data.define(:status, :additions) |
#status ⇒ Object (readonly)
Returns the value of attribute status
32 33 34 |
# File 'lib/anima/config_migrator.rb', line 32 def status @status end |
#status [Symbol] :not_found, :up_to_date, or :updated([Symbol], : up_to_date) ⇒ Object (readonly)
Outcome of a migration run.
32 |
# File 'lib/anima/config_migrator.rb', line 32 Result = Data.define(:status, :additions) |