Class: Lich::BundlerRecovery::Result

Inherits:
Struct
  • Object
show all
Defined in:
documented/bundler_recovery.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#errorObject

Returns the value of attribute error

Returns:

  • (Object)

    the current value of error



30
31
32
# File 'documented/bundler_recovery.rb', line 30

def error
  @error
end

#log_pathObject

Returns the value of attribute log_path

Returns:

  • (Object)

    the current value of log_path



30
31
32
# File 'documented/bundler_recovery.rb', line 30

def log_path
  @log_path
end

#restart_requiredObject

Returns the value of attribute restart_required

Returns:

  • (Object)

    the current value of 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.

Returns:

  • (Boolean)


34
35
36
# File 'documented/bundler_recovery.rb', line 34

def success?
  error.nil?
end