Class: Documents::Statements::Example
- Defined in:
- lib/ynab_convert/documents/statements/example_statement.rb
Overview
Example of a Statement
Instance Attribute Summary
Attributes inherited from Statement
#csv_import_options, #filepath
Instance Method Summary collapse
-
#initialize(filepath:) ⇒ Example
constructor
A new instance of Example.
Methods inherited from Statement
Constructor Details
#initialize(filepath:) ⇒ Example
Returns a new instance of Example.
9 10 11 12 13 |
# File 'lib/ynab_convert/documents/statements/example_statement.rb', line 9 def initialize(filepath:) = { col_sep: ';', quote_char: nil, headers: true } super(filepath: filepath, csv_import_options: ) end |