Class: Lich::DependencyRecovery::Result
- Inherits:
-
Struct
- Object
- Struct
- Lich::DependencyRecovery::Result
- Defined in:
- documented/dependency_recovery.rb
Overview
Result of a successful or unsuccessful recovery attempt.
Instance Attribute Summary collapse
-
#error ⇒ Object
Returns the value of attribute error.
-
#installed_gems ⇒ Object
Returns the value of attribute installed_gems.
-
#restart_required ⇒ Object
Returns the value of attribute restart_required.
Instance Method Summary collapse
-
#success? ⇒ Boolean
Whether recovery completed successfully.
Instance Attribute Details
#error ⇒ Object
Returns the value of attribute error
73 74 75 |
# File 'documented/dependency_recovery.rb', line 73 def error @error end |
#installed_gems ⇒ Object
Returns the value of attribute installed_gems
73 74 75 |
# File 'documented/dependency_recovery.rb', line 73 def installed_gems @installed_gems end |
#restart_required ⇒ Object
Returns the value of attribute restart_required
73 74 75 |
# File 'documented/dependency_recovery.rb', line 73 def restart_required @restart_required end |
Instance Method Details
#success? ⇒ Boolean
Returns whether recovery completed successfully.
75 76 77 |
# File 'documented/dependency_recovery.rb', line 75 def success? error.nil? end |