Sha256: e7f38cd54da818b305c0dabff5d5a87532d4e9de6582fe86abd1773a902117b7
Contents?: true
Size: 1009 Bytes
Versions: 12
Compression:
Stored size: 1009 Bytes
Contents
# Bank reconciliation [ChatGPT conversation](https://chatgpt.com/c/5d382562-95e5-4243-9b74-c3807d363486) ## Code structure ```bash ├─ lib │ ├─ appydave │ │ └─ tools │ │ ├─ bank_reconciliation │ │ │ ├─ clean │ │ │ │ ├─ read_transactions.rb │ │ │ │ ├─ transaction_cleaner.rb │ │ │ ├─ models │ │ │ │ ├─ raw_transaction.rb │ │ │ │ └─ reconciled_transaction.rb │ │ └─ configuration │ │ └─ models │ │ └─ bank_reconciliation_config.rb └─ spec ├─ appydave │ ├─ tools │ │ ├─ bank_reconciliation │ │ │ ├─ clean │ │ │ │ ├─ read_transactions_spec.rb │ │ │ ├─ models │ │ │ │ └─ raw_transaction_spec.rb │ │ └─ configuration │ │ └─ models │ │ └─ bank_reconciliation_config_spec.rb └─ fixtures └─ bank-reconciliation └─ bank-west.csv ```
Version data entries
12 entries across 12 versions & 1 rubygems