Method: Dynflow::Director::FlowManager#start
- Defined in:
- lib/dynflow/director/flow_manager.rb
#start ⇒ Set
Returns of steps to continue with.
30 31 32 33 34 |
# File 'lib/dynflow/director/flow_manager.rb', line 30 def start return @cursor.what_is_next.tap do |steps| raise 'invalid state' if steps.empty? && !done? end end |