Sha256: 608cfaf0985a550db69c5f827c94ff07d42c66835f006387755600ca38cb9aaa
Contents?: true
Size: 369 Bytes
Versions: 3
Compression:
Stored size: 369 Bytes
Contents
module ETL #:nodoc: module Processor #:nodoc: # Base class for pre and post processors class Processor def initialize(control, configuration) @control = control @configuration = configuration end protected def control @control end def configuration @configuration end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
activewarehouse-etl-0.1.0 | lib/etl/processor/processor.rb |
activewarehouse-etl-0.2.0 | lib/etl/processor/processor.rb |
activewarehouse-etl-0.3.0 | lib/etl/processor/processor.rb |