Method: Dynflow::Persistence#load_steps

Defined in:
lib/dynflow/persistence.rb

#load_steps(execution_plan_id, world) ⇒ Object



132
133
134
135
136
# File 'lib/dynflow/persistence.rb', line 132

def load_steps(execution_plan_id, world)
  adapter.load_steps(execution_plan_id).map do |step_hash|
    ExecutionPlan::Steps::Abstract.from_hash(step_hash, execution_plan_id, world)
  end
end