Sha256: 22490731d8fb73834a6869bc7870eb2fd7395c3bdeabed0621255effd4668505
Contents?: true
Size: 273 Bytes
Versions: 26
Compression:
Stored size: 273 Bytes
Contents
module ETL #:nodoc: module Processor #:nodoc: # Debugging processor for printing the current row class PrintRowProcessor < ETL::Processor::RowProcessor # Process the row def process(row) puts row.inspect row end end end end
Version data entries
26 entries across 26 versions & 9 rubygems