Class: Lich::BundlerRecovery::Result
- Inherits:
-
Struct
- Object
- Struct
- Lich::BundlerRecovery::Result
- Defined in:
- documented/bundler_recovery.rb
Instance Attribute Summary collapse
-
#error ⇒ Object
Returns the value of attribute error.
-
#log_path ⇒ Object
Returns the value of attribute log_path.
-
#restart_required ⇒ Object
Returns the value of attribute restart_required.
Instance Method Summary collapse
-
#success? ⇒ Boolean
Returns true if the recovery operation completed without error.
Instance Attribute Details
#error ⇒ Object
Returns the value of attribute error
30 31 32 |
# File 'documented/bundler_recovery.rb', line 30 def error @error end |
#log_path ⇒ Object
Returns the value of attribute log_path
30 31 32 |
# File 'documented/bundler_recovery.rb', line 30 def log_path @log_path end |
#restart_required ⇒ Object
Returns the value of attribute restart_required
30 31 32 |
# File 'documented/bundler_recovery.rb', line 30 def restart_required @restart_required end |
Instance Method Details
#success? ⇒ Boolean
Returns true if the recovery operation completed without error.
34 35 36 |
# File 'documented/bundler_recovery.rb', line 34 def success? error.nil? end |