class BankAccountStatement::Inputs::TXT::Base
Constants
- FILE_EXT
Public Class Methods
new(txt)
click to toggle source
# File lib/bank-account-statement/inputs/TXT/base.rb, line 12 def initialize(txt) @doc = txt.split("\n").map(&:rstrip) @doc_e = @doc.reject(&:empty?) end