Method: Quickstep#step

Defined in:
lib/quickstep.rb

#step(result) ⇒ Object



30
31
32
33
34
35
36
# File 'lib/quickstep.rb', line 30

def step(result)
  if result.success?
    result
  else
    throw :halt, result
  end
end