Class: UpdateApplier::Result
- Inherits:
-
Struct
- Object
- Struct
- UpdateApplier::Result
- Defined in:
- action/lib/update_applier.rb
Overview
Summary of manifest rewrites attempted by apply-updates mode.
Instance Attribute Summary collapse
-
#applied ⇒ Object
Returns the value of attribute applied.
-
#failed ⇒ Object
Returns the value of attribute failed.
-
#skipped ⇒ Object
Returns the value of attribute skipped.
Instance Method Summary collapse
Instance Attribute Details
#applied ⇒ Object
Returns the value of attribute applied
8 9 10 |
# File 'action/lib/update_applier.rb', line 8 def applied @applied end |
#failed ⇒ Object
Returns the value of attribute failed
8 9 10 |
# File 'action/lib/update_applier.rb', line 8 def failed @failed end |
#skipped ⇒ Object
Returns the value of attribute skipped
8 9 10 |
# File 'action/lib/update_applier.rb', line 8 def skipped @skipped end |
Instance Method Details
#applied_count ⇒ Object
9 10 11 |
# File 'action/lib/update_applier.rb', line 9 def applied_count applied.size end |
#failed? ⇒ Boolean
13 14 15 |
# File 'action/lib/update_applier.rb', line 13 def failed? failed.any? end |
#to_json_records ⇒ Object
17 18 19 |
# File 'action/lib/update_applier.rb', line 17 def to_json_records applied end |