Class: CSVPlusPlus::Writer::OpenDocument
Overview
A class that can output a Template
to an Excel file
Instance Attribute Summary
Attributes inherited from Writer
Instance Method Summary collapse
-
#initialize(options, position) ⇒ OpenDocument
constructor
A new instance of OpenDocument.
-
#write(template) ⇒ Object
write a
template
to an OpenDocument file. -
#write_backup ⇒ Object
write a backup of the google sheet.
Methods included from FileBackerUpper
Constructor Details
#initialize(options, position) ⇒ OpenDocument
Returns a new instance of OpenDocument.
14 15 16 17 18 |
# File 'lib/csv_plus_plus/writer/open_document.rb', line 14 def initialize(, position) super(position) @options = end |
Instance Method Details
#write(template) ⇒ Object
write a template
to an OpenDocument file
22 23 24 |
# File 'lib/csv_plus_plus/writer/open_document.rb', line 22 def write(template) # TODO end |
#write_backup ⇒ Object
write a backup of the google sheet
28 29 30 |
# File 'lib/csv_plus_plus/writer/open_document.rb', line 28 def write_backup backup_file(@options) end |