Sha256: f3b930d62a768bf41fa8a545d9ca19bd7638132fec45b7d3b600fedbe13099c3
Contents?: true
Size: 395 Bytes
Versions: 6
Compression:
Stored size: 395 Bytes
Contents
# frozen_string_literal: true require 'ynab_convert/documents/statements/statement' module Documents module Statements # Example of a Statement class Example < Statement def initialize(filepath:) csv_import_options = { col_sep: ';', quote_char: nil, headers: true } super(filepath: filepath, csv_import_options: csv_import_options) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems