class BankPayments::SwedbankImport::Sequence
Contains all records for a sequence. The sequence starts with an opening record followed by an account record, i.e. which account that was debited. It then alternates three records: Name, Address-and Money Record to describe a transaction with it’s beneficiary.
Records are expected to be a text string and passed to the sequence through the “<<”-method.
@author Michael Litton
Attributes
records[R]
Public Class Methods
new()
click to toggle source
# File lib/bank_payments/swedbank_import/sequence.rb, line 16 def initialize @records = [] end
Public Instance Methods
<<(raw_record)
click to toggle source
# File lib/bank_payments/swedbank_import/sequence.rb, line 20 def <<(raw_record) new_record = case raw_record[0] when '0' OpeningRecord.new(raw_record) when '1' AccountRecord.new(raw_record) when '2' NameRecord.new(raw_record) when '3' AddressRecord.new(raw_record) when '5' MoneyRecord.new(raw_record) when '6' ReconciliationRecord.new(raw_record) else raise 'Unknown record' end @records << new_record end