Class: ETL::Batch::Run
Overview
Directive indicating that the specified ETL control file should be run
Instance Attribute Summary (collapse)
-
- (Object) file
readonly
The file to execute.
Attributes inherited from Directive
Instance Method Summary (collapse)
-
- (Run) initialize(batch, file)
constructor
Initialize the directive with the given batch object and file.
Methods inherited from Directive
Constructor Details
- (Run) initialize(batch, file)
Initialize the directive with the given batch object and file
32 33 34 35 |
# File 'lib/etl/batch/directives.rb', line 32 def initialize(batch, file) super(batch) @file = file end |
Instance Attribute Details
- (Object) file (readonly)
The file to execute
29 30 31 |
# File 'lib/etl/batch/directives.rb', line 29 def file @file end |