module Tuvi
Constants
- VERSION
Public Instance Methods
run()
click to toggle source
# File lib/tuvi.rb, line 12 def run ApplicationRunner.new(@steps).run end
step(id, &block)
click to toggle source
# File lib/tuvi.rb, line 7 def step(id, &block) @steps ||= {} @steps[id] = Step.new(id, &block) end