find-subscriptions 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/find_subscriptions.rb +26 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11a3975380aece18b36723e9187c87a24aedcc775a2dd8a196cd165c6375ee41
|
|
4
|
+
data.tar.gz: 20e28d7a29bfeba088043b181814475202d1b4a678b7347838fe7312c024be32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbbb7b9f12188c6201795d7a28b2f02f21ef3125032cc1878b7c63eb97c0459bd37a1d6449d25c2fde3de990150c92343a4fb997c223594e39964bafaf2c80b4
|
|
7
|
+
data.tar.gz: a8a53c131e70abbb2018c7d0b8698b7d4fd07471229e06d2c631b584dd22cb5387a08380ec2e37c3cc6425b631fa82c3e59d2d31a686e0954e35b3057238ce83
|
data/lib/find_subscriptions.rb
CHANGED
|
@@ -1,4 +1,29 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# FindSubscriptions detects recurring charges in bank and credit card CSV exports.
|
|
4
|
+
#
|
|
5
|
+
# The main entry point for consumers of the library is {FindSubscriptions::CLI}.
|
|
6
|
+
# CSV parsing is handled by {FindSubscriptions::CsvSchema} and {FindSubscriptions::SchemaRegistry}.
|
|
7
|
+
# Repeat-charge detection lives in {FindSubscriptions::Detectors::RepeatCharges}.
|
|
8
|
+
#
|
|
9
|
+
# @see FindSubscriptions::CLI
|
|
10
|
+
# @see FindSubscriptions::ConfigLoader
|
|
11
|
+
# @see FindSubscriptions::UserSchemaBuilder
|
|
12
|
+
module FindSubscriptions
|
|
13
|
+
end
|
|
14
|
+
|
|
4
15
|
require_relative 'find_subscriptions/transaction'
|
|
16
|
+
require_relative 'find_subscriptions/schema_registry'
|
|
17
|
+
require_relative 'find_subscriptions/payee_normalizer'
|
|
18
|
+
require_relative 'find_subscriptions/help_text'
|
|
19
|
+
require_relative 'find_subscriptions/config_loader'
|
|
20
|
+
require_relative 'find_subscriptions/user_schema_builder'
|
|
21
|
+
require_relative 'schemas/generic'
|
|
22
|
+
require_relative 'schemas/american_express'
|
|
23
|
+
require_relative 'schemas/navy_federal'
|
|
24
|
+
require_relative 'detectors/known_payees'
|
|
25
|
+
require_relative 'detectors/repeat_charges'
|
|
26
|
+
require_relative 'output/stdout_reporter'
|
|
27
|
+
require_relative 'output/json_reporter'
|
|
28
|
+
require_relative 'output/csv_reporter'
|
|
29
|
+
require_relative 'find_subscriptions/cli'
|