Class: ETL::Processor::PrintRowProcessor
- Inherits:
-
RowProcessor
- Object
- Processor
- RowProcessor
- ETL::Processor::PrintRowProcessor
- Defined in:
- lib/etl/processor/print_row_processor.rb
Overview
Debugging processor for printing the current row
Instance Method Summary collapse
-
#process(row) ⇒ Object
Process the row.
Methods inherited from RowProcessor
#ensure_columns_available_in_row!, #initialize
Methods inherited from Processor
Constructor Details
This class inherits a constructor from ETL::Processor::RowProcessor
Instance Method Details
#process(row) ⇒ Object
Process the row
6 7 8 9 |
# File 'lib/etl/processor/print_row_processor.rb', line 6 def process(row) puts row.inspect row end |