class Enzymator::Transformers::Object::SimplePipeliner

Public Instance Methods

transform(input) click to toggle source
# File lib/enzymator/transformers/object/simple_pipeliner.rb, line 6
def transform(input)
  @config.stages.reduce(input) { |acum, stage| stage.run_on(acum) }
end