Method: Toaster::AutomationRun#get_executed_tasks
- Defined in:
- lib/toaster/model/automation_run.rb
#get_executed_tasks ⇒ Object
55 56 57 58 59 60 61 |
# File 'lib/toaster/model/automation_run.rb', line 55 def get_executed_tasks() result = [] task_executions.each do |exec| result << exec.task end return result end |