Class: Hamal::RemoteExecutor::ExecResult
- Inherits:
-
Struct
- Object
- Struct
- Hamal::RemoteExecutor::ExecResult
- Defined in:
- lib/hamal.rb
Instance Attribute Summary collapse
-
#exit_code ⇒ Object
Returns the value of attribute exit_code.
-
#output ⇒ Object
Returns the value of attribute output.
Instance Method Summary collapse
Instance Attribute Details
#exit_code ⇒ Object
Returns the value of attribute exit_code
39 40 41 |
# File 'lib/hamal.rb', line 39 def exit_code @exit_code end |
#output ⇒ Object
Returns the value of attribute output
39 40 41 |
# File 'lib/hamal.rb', line 39 def output @output end |
Instance Method Details
#success? ⇒ Boolean
40 |
# File 'lib/hamal.rb', line 40 def success? = exit_code.zero? |