require 'transflow/publisher' module Transflow class StepDSL attr_reader :name attr_reader :handler attr_reader :container attr_reader :steps attr_reader :publish def initialize(name, options, container, steps, &block) @name = name @handler = options.fetch(:with, name) @publish = options.fetch(:publish, false) @container = container @steps = steps instance_exec(&block) if block end def step(*args, &block) self.class.new(*args, container, steps, &block).call end def call operation = container[handler] step = if publish Publisher.new(name, operation) else operation end steps[name] = step end end end