Sha256: 0aaa02bbb37e821b1b136bc2982fa18564040f3d0954ba1b60ad94c5357dea1f
Contents?: true
Size: 300 Bytes
Versions: 31
Compression:
Stored size: 300 Bytes
Contents
module ETL module Transform class BlockTransform < ETL::Transform::Transform def initialize(control, name, configuration) super @block = configuration[:block] end def transform(name, value, row) @block.call(name, value, row) end end end end
Version data entries
31 entries across 31 versions & 9 rubygems