Sha256: c1fc1489d9eff6c10ff62ea762a334b50a94952a73f80eb4b2ccd52068700907
Contents?: true
Size: 380 Bytes
Versions: 6
Compression:
Stored size: 380 Bytes
Contents
# frozen_string_literal: true module Documents module Statements # Wise card accounts statement class Wise < Statement def initialize(filepath:) csv_import_options = { col_sep: ',', quote_char: '"', 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