Module: BankOCR
- Defined in:
- lib/bankocr.rb,
lib/digit.rb,
lib/file_parser.rb,
lib/account_number.rb,
lib/bankocr/version.rb,
lib/report_generator.rb
Overview
Module with logic to process a OCR input file and export a report with account numbers
Defined Under Namespace
Classes: AccountNumber, Digit, FileParser, ReportGenerator
Constant Summary collapse
- VERSION =
'0.1.0'
Class Method Summary collapse
Class Method Details
.process(input, output) ⇒ Object
11 12 13 14 15 |
# File 'lib/bankocr.rb', line 11 def self.process(input, output) account_numbers = BankOCR::FileParser.new(input).entries BankOCR::ReportGenerator.new(output, account_numbers).save! end |