Class: OpenSandbox::Runner::Result
- Inherits:
-
Data
- Object
- Data
- OpenSandbox::Runner::Result
- Defined in:
- lib/open_sandbox/runner.rb
Instance Attribute Summary collapse
-
#elapsed ⇒ Object
readonly
Returns the value of attribute elapsed.
-
#output ⇒ Object
readonly
Returns the value of attribute output.
-
#sandbox_id ⇒ Object
readonly
Returns the value of attribute sandbox_id.
-
#success ⇒ Object
(also: #success?)
readonly
Returns the value of attribute success.
Instance Method Summary collapse
Instance Attribute Details
#elapsed ⇒ Object (readonly)
Returns the value of attribute elapsed
31 32 33 |
# File 'lib/open_sandbox/runner.rb', line 31 def elapsed @elapsed end |
#output ⇒ Object (readonly)
Returns the value of attribute output
31 32 33 |
# File 'lib/open_sandbox/runner.rb', line 31 def output @output end |
#sandbox_id ⇒ Object (readonly)
Returns the value of attribute sandbox_id
31 32 33 |
# File 'lib/open_sandbox/runner.rb', line 31 def sandbox_id @sandbox_id end |
#success ⇒ Object (readonly) Also known as: success?
Returns the value of attribute success
31 32 33 |
# File 'lib/open_sandbox/runner.rb', line 31 def success @success end |
Instance Method Details
#failure? ⇒ Boolean
33 |
# File 'lib/open_sandbox/runner.rb', line 33 def failure? = !success |