Class: ETL::Generator::Generator
- Defined in:
- lib/etl/generator/generator.rb
Overview
Base class for generators.
Direct Known Subclasses
Class Method Summary collapse
-
.class_for_name(name) ⇒ Object
Get the Class for the specified name.
Instance Method Summary collapse
-
#next ⇒ Object
Generate the next value.
Class Method Details
Instance Method Details
#next ⇒ Object
Generate the next value. This method must be implemented by subclasses
15 16 17 |
# File 'lib/etl/generator/generator.rb', line 15 def next raise "Must be implemented by a subclass" end |