spltty 0.1.0
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +351 -0
- data/config.example.json +33 -0
- data/exe/spltty +11 -0
- data/lib/spltty_cli/commands/add.rb +274 -0
- data/lib/spltty_cli/commands/groups.rb +47 -0
- data/lib/spltty_cli/commands/groups_add.rb +73 -0
- data/lib/spltty_cli/commands/groups_rm.rb +73 -0
- data/lib/spltty_cli/commands/help.rb +44 -0
- data/lib/spltty_cli/commands/install.rb +407 -0
- data/lib/spltty_cli/commands/list.rb +37 -0
- data/lib/spltty_cli/commands/methods.rb +33 -0
- data/lib/spltty_cli/commands/methods_add.rb +58 -0
- data/lib/spltty_cli/commands/settle.rb +302 -0
- data/lib/spltty_cli/commands/sync.rb +41 -0
- data/lib/spltty_cli/commands/totals.rb +85 -0
- data/lib/spltty_cli/config.rb +140 -0
- data/lib/spltty_cli/discovery.rb +95 -0
- data/lib/spltty_cli/groups.rb +60 -0
- data/lib/spltty_cli/ledger.rb +68 -0
- data/lib/spltty_cli/notes.rb +67 -0
- data/lib/spltty_cli/notes_sync.rb +137 -0
- data/lib/spltty_cli/prompt.rb +75 -0
- data/lib/spltty_cli/table.rb +95 -0
- data/lib/spltty_cli/totals.rb +222 -0
- data/lib/spltty_cli/version.rb +5 -0
- data/lib/spltty_cli.rb +98 -0
- data/templates/CLAUDE.md.erb +229 -0
- data/templates/gitignore +4 -0
- data/templates/notes.md.erb +39 -0
- data/templates/skills/ingest/SKILL.md +66 -0
- data/templates/sources-INDEX.md +13 -0
- metadata +94 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Source tracker
|
|
2
|
+
|
|
3
|
+
Every file dropped into `sources/` gets a row here. Never delete a row — mark superseded files as
|
|
4
|
+
`superseded` and link the replacement.
|
|
5
|
+
|
|
6
|
+
Statuses:
|
|
7
|
+
|
|
8
|
+
- `pending` — saved here, not yet turned into ledger rows.
|
|
9
|
+
- `processed` — fully ingested. List the expense titles extracted and the ledger they landed in.
|
|
10
|
+
- `superseded` — replaced by a newer/better source; link it.
|
|
11
|
+
|
|
12
|
+
| File | Received | Status | Ledger(s) | Extracted | Notes |
|
|
13
|
+
|------|----------|--------|-----------|-----------|-------|
|
metadata
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: spltty
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Thiago Diniz
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-08-05 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: dry-cli
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '1.0'
|
|
26
|
+
description: |
|
|
27
|
+
spltty keeps shared expenses in plain markdown tables under version control and
|
|
28
|
+
owns the parts that must be exact: appending rows, resolving split groups, and
|
|
29
|
+
computing who owes whom. `spltty install` scaffolds a whole workspace — accounts,
|
|
30
|
+
sources and a generated CLAUDE.md — so an AI agent can do the transcription while
|
|
31
|
+
the CLI does the arithmetic.
|
|
32
|
+
executables:
|
|
33
|
+
- spltty
|
|
34
|
+
extensions: []
|
|
35
|
+
extra_rdoc_files: []
|
|
36
|
+
files:
|
|
37
|
+
- LICENSE
|
|
38
|
+
- README.md
|
|
39
|
+
- config.example.json
|
|
40
|
+
- exe/spltty
|
|
41
|
+
- lib/spltty_cli.rb
|
|
42
|
+
- lib/spltty_cli/commands/add.rb
|
|
43
|
+
- lib/spltty_cli/commands/groups.rb
|
|
44
|
+
- lib/spltty_cli/commands/groups_add.rb
|
|
45
|
+
- lib/spltty_cli/commands/groups_rm.rb
|
|
46
|
+
- lib/spltty_cli/commands/help.rb
|
|
47
|
+
- lib/spltty_cli/commands/install.rb
|
|
48
|
+
- lib/spltty_cli/commands/list.rb
|
|
49
|
+
- lib/spltty_cli/commands/methods.rb
|
|
50
|
+
- lib/spltty_cli/commands/methods_add.rb
|
|
51
|
+
- lib/spltty_cli/commands/settle.rb
|
|
52
|
+
- lib/spltty_cli/commands/sync.rb
|
|
53
|
+
- lib/spltty_cli/commands/totals.rb
|
|
54
|
+
- lib/spltty_cli/config.rb
|
|
55
|
+
- lib/spltty_cli/discovery.rb
|
|
56
|
+
- lib/spltty_cli/groups.rb
|
|
57
|
+
- lib/spltty_cli/ledger.rb
|
|
58
|
+
- lib/spltty_cli/notes.rb
|
|
59
|
+
- lib/spltty_cli/notes_sync.rb
|
|
60
|
+
- lib/spltty_cli/prompt.rb
|
|
61
|
+
- lib/spltty_cli/table.rb
|
|
62
|
+
- lib/spltty_cli/totals.rb
|
|
63
|
+
- lib/spltty_cli/version.rb
|
|
64
|
+
- templates/CLAUDE.md.erb
|
|
65
|
+
- templates/gitignore
|
|
66
|
+
- templates/notes.md.erb
|
|
67
|
+
- templates/skills/ingest/SKILL.md
|
|
68
|
+
- templates/sources-INDEX.md
|
|
69
|
+
homepage: https://github.com/thiagodiniz/spltty
|
|
70
|
+
licenses:
|
|
71
|
+
- MIT
|
|
72
|
+
metadata:
|
|
73
|
+
homepage_uri: https://github.com/thiagodiniz/spltty
|
|
74
|
+
source_code_uri: https://github.com/thiagodiniz/spltty
|
|
75
|
+
rubygems_mfa_required: 'true'
|
|
76
|
+
rdoc_options: []
|
|
77
|
+
require_paths:
|
|
78
|
+
- lib
|
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '3.1'
|
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '0'
|
|
89
|
+
requirements: []
|
|
90
|
+
rubygems_version: 3.6.2
|
|
91
|
+
specification_version: 4
|
|
92
|
+
summary: Shared-expense tracking in plain markdown ledgers, with AI-friendly workflow
|
|
93
|
+
docs
|
|
94
|
+
test_files: []
|