Module: OFXReader
- Defined in:
- lib/ofx_reader.rb,
lib/ofx_reader/version.rb,
lib/ofx_reader/parser/base.rb,
lib/ofx_reader/parser/ofx_102.rb,
lib/ofx_reader/errors/unsupported_ofx_version_error.rb,
lib/ofx_reader/errors/ofx_without_bank_account_error.rb
Defined Under Namespace
Modules: Parser Classes: OFXWithoutBankAccountError, UnsupportedOFXVersionError
Constant Summary collapse
- VERSION =
"0.1.5"
Class Method Summary collapse
Class Method Details
.call(ofx_text, strict: false) ⇒ Object
]
30 31 32 |
# File 'lib/ofx_reader.rb', line 30 def self.call(ofx_text, strict: false) OFXReader::Parser::Base.new(ofx_text, strict: strict) end |