Class: Rwm::TaskRunner::Result
- Inherits:
-
Struct
- Object
- Struct
- Rwm::TaskRunner::Result
- Defined in:
- lib/rwm/task_runner.rb
Instance Attribute Summary collapse
-
#output ⇒ Object
Returns the value of attribute output.
-
#package_name ⇒ Object
Returns the value of attribute package_name.
-
#status ⇒ Object
Returns the value of attribute status.
-
#task ⇒ Object
Returns the value of attribute task.
Instance Method Summary collapse
- #dep_skipped? ⇒ Boolean
- #errored? ⇒ Boolean
- #failed? ⇒ Boolean
- #passed? ⇒ Boolean
- #skipped? ⇒ Boolean
- #success? ⇒ Boolean
Instance Attribute Details
#output ⇒ Object
Returns the value of attribute output
8 9 10 |
# File 'lib/rwm/task_runner.rb', line 8 def output @output end |
#package_name ⇒ Object
Returns the value of attribute package_name
8 9 10 |
# File 'lib/rwm/task_runner.rb', line 8 def package_name @package_name end |
#status ⇒ Object
Returns the value of attribute status
8 9 10 |
# File 'lib/rwm/task_runner.rb', line 8 def status @status end |
#task ⇒ Object
Returns the value of attribute task
8 9 10 |
# File 'lib/rwm/task_runner.rb', line 8 def task @task end |
Instance Method Details
#dep_skipped? ⇒ Boolean
12 |
# File 'lib/rwm/task_runner.rb', line 12 def dep_skipped? = status == :dep_skipped |
#errored? ⇒ Boolean
13 |
# File 'lib/rwm/task_runner.rb', line 13 def errored? = status == :errored |
#failed? ⇒ Boolean
10 |
# File 'lib/rwm/task_runner.rb', line 10 def failed? = status == :failed |
#passed? ⇒ Boolean
9 |
# File 'lib/rwm/task_runner.rb', line 9 def passed? = status == :passed |
#skipped? ⇒ Boolean
11 |
# File 'lib/rwm/task_runner.rb', line 11 def skipped? = status == :skipped |
#success? ⇒ Boolean
14 |
# File 'lib/rwm/task_runner.rb', line 14 def success? = passed? || skipped? |