class Retl::StepHandler

Attributes

step[R]

Public Class Methods

new(step) click to toggle source
Calls superclass method Retl::Handler::new
# File lib/retl/handlers/step_handler.rb, line 7
def initialize(step)
  super()
  @step = step
end

Public Instance Methods

call(data, context) click to toggle source
# File lib/retl/handlers/step_handler.rb, line 12
def call(data, context)
  push_out context.execute_step(step, data)
end