Module: Tuvi

Defined in:
lib/tuvi.rb,
lib/tuvi/version.rb

Constant Summary collapse

VERSION =
"0.0.14"

Instance Method Summary collapse

Instance Method Details

#runObject



12
13
14
# File 'lib/tuvi.rb', line 12

def run
  ApplicationRunner.new(@steps).run
end

#step(id, &block) ⇒ Object



7
8
9
10
# File 'lib/tuvi.rb', line 7

def step(id, &block)
  @steps ||= {}
  @steps[id] = Step.new(id, &block)
end