Class: Zt::Exporters::BaseExporter
- Inherits:
-
Object
- Object
- Zt::Exporters::BaseExporter
- Defined in:
- lib/zt/exporters/_base_exporter.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
Instance Method Summary collapse
- #export ⇒ Object
-
#initialize ⇒ BaseExporter
constructor
A new instance of BaseExporter.
Constructor Details
#initialize ⇒ BaseExporter
Returns a new instance of BaseExporter.
7 8 9 |
# File 'lib/zt/exporters/_base_exporter.rb', line 7 def initialize super end |
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
6 7 8 |
# File 'lib/zt/exporters/_base_exporter.rb', line 6 def data @data end |
Instance Method Details
#export ⇒ Object
11 12 13 |
# File 'lib/zt/exporters/_base_exporter.rb', line 11 def export abort('export called on non-functional superclass exporter') end |