lunchmoney 0.10.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/.DS_Store +0 -0
- data/.github/dependabot.yml +18 -0
- data/.github/workflows/build_and_publish_yard_docs.yml +47 -0
- data/.github/workflows/ci.yml +58 -0
- data/.github/workflows/dependabot-rbi-updater.yml +43 -0
- data/.github/workflows/publish_gem.yml +31 -0
- data/.gitignore +62 -0
- data/.rubocop.yml +45 -0
- data/.ruby-version +1 -0
- data/.toys/.toys.rb +10 -0
- data/.toys/ci.rb +22 -0
- data/.toys/rbi.rb +60 -0
- data/.toys/rubocop.rb +10 -0
- data/.toys/spoom.rb +15 -0
- data/.toys/typecheck.rb +5 -0
- data/.yardopts +2 -0
- data/Appraisals +22 -0
- data/Gemfile +25 -0
- data/Gemfile.lock +174 -0
- data/LICENSE +21 -0
- data/README.md +57 -0
- data/bin/console +16 -0
- data/bin/rubocop +27 -0
- data/bin/setup +8 -0
- data/bin/spoom +27 -0
- data/bin/srb +27 -0
- data/bin/tapioca +27 -0
- data/bin/toys +27 -0
- data/bin/yard +27 -0
- data/lib/lunchmoney/api.rb +147 -0
- data/lib/lunchmoney/api_call.rb +109 -0
- data/lib/lunchmoney/assets/asset.rb +89 -0
- data/lib/lunchmoney/assets/asset_calls.rb +96 -0
- data/lib/lunchmoney/budget/budget.rb +74 -0
- data/lib/lunchmoney/budget/budget_calls.rb +82 -0
- data/lib/lunchmoney/budget/config.rb +38 -0
- data/lib/lunchmoney/budget/data.rb +42 -0
- data/lib/lunchmoney/categories/category/category.rb +52 -0
- data/lib/lunchmoney/categories/category/child_category.rb +42 -0
- data/lib/lunchmoney/categories/category_calls.rb +195 -0
- data/lib/lunchmoney/configuration.rb +26 -0
- data/lib/lunchmoney/crypto/crypto/crypto.rb +43 -0
- data/lib/lunchmoney/crypto/crypto/crypto_base.rb +65 -0
- data/lib/lunchmoney/crypto/crypto_calls.rb +49 -0
- data/lib/lunchmoney/data_object.rb +25 -0
- data/lib/lunchmoney/errors.rb +19 -0
- data/lib/lunchmoney/exceptions.rb +19 -0
- data/lib/lunchmoney/plaid_accounts/plaid_account.rb +73 -0
- data/lib/lunchmoney/plaid_accounts/plaid_account_calls.rb +38 -0
- data/lib/lunchmoney/recurring_expenses/recurring_expense/recurring_expense.rb +65 -0
- data/lib/lunchmoney/recurring_expenses/recurring_expense/recurring_expense_base.rb +29 -0
- data/lib/lunchmoney/recurring_expenses/recurring_expense_calls.rb +28 -0
- data/lib/lunchmoney/tags/tag/tag.rb +20 -0
- data/lib/lunchmoney/tags/tag/tag_base.rb +21 -0
- data/lib/lunchmoney/tags/tag_calls.rb +20 -0
- data/lib/lunchmoney/transactions/transaction/child_transaction.rb +31 -0
- data/lib/lunchmoney/transactions/transaction/split.rb +24 -0
- data/lib/lunchmoney/transactions/transaction/transaction.rb +156 -0
- data/lib/lunchmoney/transactions/transaction/transaction_base.rb +52 -0
- data/lib/lunchmoney/transactions/transaction/transaction_modification_base.rb +30 -0
- data/lib/lunchmoney/transactions/transaction/update_transaction.rb +43 -0
- data/lib/lunchmoney/transactions/transaction_calls.rb +218 -0
- data/lib/lunchmoney/user/user.rb +36 -0
- data/lib/lunchmoney/user/user_calls.rb +19 -0
- data/lib/lunchmoney/validators.rb +43 -0
- data/lib/lunchmoney/version.rb +7 -0
- data/lib/lunchmoney.rb +54 -0
- data/lunchmoney.gemspec +34 -0
- data/sorbet/config +5 -0
- data/sorbet/rbi/annotations/.gitattributes +1 -0
- data/sorbet/rbi/annotations/activesupport.rbi +410 -0
- data/sorbet/rbi/annotations/faraday.rbi +17 -0
- data/sorbet/rbi/annotations/mocha.rbi +34 -0
- data/sorbet/rbi/annotations/rainbow.rbi +269 -0
- data/sorbet/rbi/annotations/webmock.rbi +9 -0
- data/sorbet/rbi/dsl/.gitattributes +1 -0
- data/sorbet/rbi/dsl/active_support/callbacks.rbi +22 -0
- data/sorbet/rbi/gems/.gitattributes +1 -0
- data/sorbet/rbi/gems/activesupport@7.1.3.rbi +18004 -0
- data/sorbet/rbi/gems/addressable@2.8.6.rbi +1993 -0
- data/sorbet/rbi/gems/appraisal@2.5.0.rbi +621 -0
- data/sorbet/rbi/gems/ast@2.4.2.rbi +584 -0
- data/sorbet/rbi/gems/base64@0.2.0.rbi +508 -0
- data/sorbet/rbi/gems/bigdecimal@3.1.6.rbi +77 -0
- data/sorbet/rbi/gems/coderay@1.1.3.rbi +3426 -0
- data/sorbet/rbi/gems/concurrent-ruby@1.2.3.rbi +11590 -0
- data/sorbet/rbi/gems/connection_pool@2.4.1.rbi +8 -0
- data/sorbet/rbi/gems/crack@0.4.5.rbi +144 -0
- data/sorbet/rbi/gems/dotenv@2.8.1.rbi +234 -0
- data/sorbet/rbi/gems/drb@2.2.0.rbi +1346 -0
- data/sorbet/rbi/gems/erubi@1.12.0.rbi +145 -0
- data/sorbet/rbi/gems/faraday-net_http@3.1.0.rbi +146 -0
- data/sorbet/rbi/gems/faraday@2.9.0.rbi +2911 -0
- data/sorbet/rbi/gems/hashdiff@1.1.0.rbi +352 -0
- data/sorbet/rbi/gems/i18n@1.14.1.rbi +2325 -0
- data/sorbet/rbi/gems/json@2.7.1.rbi +1561 -0
- data/sorbet/rbi/gems/language_server-protocol@3.17.0.3.rbi +14237 -0
- data/sorbet/rbi/gems/method_source@1.0.0.rbi +272 -0
- data/sorbet/rbi/gems/minitest@5.21.2.rbi +2197 -0
- data/sorbet/rbi/gems/mocha@2.1.0.rbi +3934 -0
- data/sorbet/rbi/gems/mutex_m@0.2.0.rbi +93 -0
- data/sorbet/rbi/gems/net-http@0.4.1.rbi +4068 -0
- data/sorbet/rbi/gems/netrc@0.11.0.rbi +158 -0
- data/sorbet/rbi/gems/parallel@1.24.0.rbi +280 -0
- data/sorbet/rbi/gems/parser@3.3.0.5.rbi +5472 -0
- data/sorbet/rbi/gems/prettier_print@1.2.1.rbi +951 -0
- data/sorbet/rbi/gems/prism@0.19.0.rbi +29883 -0
- data/sorbet/rbi/gems/pry-sorbet@0.2.1.rbi +966 -0
- data/sorbet/rbi/gems/pry@0.14.2.rbi +10077 -0
- data/sorbet/rbi/gems/public_suffix@5.0.4.rbi +935 -0
- data/sorbet/rbi/gems/racc@1.7.3.rbi +161 -0
- data/sorbet/rbi/gems/rack@3.0.8.rbi +5183 -0
- data/sorbet/rbi/gems/rainbow@3.1.1.rbi +402 -0
- data/sorbet/rbi/gems/rake@13.1.0.rbi +3027 -0
- data/sorbet/rbi/gems/rbi@0.1.6.rbi +2922 -0
- data/sorbet/rbi/gems/regexp_parser@2.9.0.rbi +3771 -0
- data/sorbet/rbi/gems/rexml@3.2.6.rbi +4781 -0
- data/sorbet/rbi/gems/rubocop-ast@1.30.0.rbi +7117 -0
- data/sorbet/rbi/gems/rubocop-minitest@0.34.5.rbi +2576 -0
- data/sorbet/rbi/gems/rubocop-rails@2.23.1.rbi +9175 -0
- data/sorbet/rbi/gems/rubocop-shopify@2.14.0.rbi +8 -0
- data/sorbet/rbi/gems/rubocop-sorbet@0.7.6.rbi +1510 -0
- data/sorbet/rbi/gems/rubocop@1.60.1.rbi +57356 -0
- data/sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi +1317 -0
- data/sorbet/rbi/gems/ruby2_keywords@0.0.5.rbi +8 -0
- data/sorbet/rbi/gems/spoom@1.2.4.rbi +3777 -0
- data/sorbet/rbi/gems/syntax_tree@6.2.0.rbi +23136 -0
- data/sorbet/rbi/gems/tapioca@0.12.0.rbi +3506 -0
- data/sorbet/rbi/gems/thor@1.3.0.rbi +4312 -0
- data/sorbet/rbi/gems/toys-core@0.15.4.rbi +9462 -0
- data/sorbet/rbi/gems/toys@0.15.4.rbi +243 -0
- data/sorbet/rbi/gems/tzinfo@2.0.6.rbi +5917 -0
- data/sorbet/rbi/gems/unicode-display_width@2.5.0.rbi +65 -0
- data/sorbet/rbi/gems/uri@0.13.0.rbi +2327 -0
- data/sorbet/rbi/gems/vcr@6.2.0.rbi +3036 -0
- data/sorbet/rbi/gems/webmock@3.19.1.rbi +1768 -0
- data/sorbet/rbi/gems/yard-sorbet@0.8.1.rbi +428 -0
- data/sorbet/rbi/gems/yard@0.9.34.rbi +18084 -0
- data/sorbet/shims/module.rbi +6 -0
- data/sorbet/tapioca/require.rb +10 -0
- metadata +228 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
# typed: strict
|
2
|
+
# # DO NOT EDIT MANUALLY
|
3
|
+
# This is an autogenerated file for explicit gem requires.
|
4
|
+
# Plus instead update this file by running `bin/tapioca require`.
|
5
|
+
# frozen_string_literal: true
|
6
|
+
|
7
|
+
require "minitest/autorun"
|
8
|
+
require "sorbet-runtime"
|
9
|
+
require "active_support"
|
10
|
+
require "mocha/minitest"
|
metadata
ADDED
@@ -0,0 +1,228 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lunchmoney
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.10.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "@halorrr"
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-02-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '6.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '6.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.0.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.0.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sorbet-runtime
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.5'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.5'
|
55
|
+
description:
|
56
|
+
email: halorrr@gmail.com
|
57
|
+
executables: []
|
58
|
+
extensions: []
|
59
|
+
extra_rdoc_files: []
|
60
|
+
files:
|
61
|
+
- ".DS_Store"
|
62
|
+
- ".github/dependabot.yml"
|
63
|
+
- ".github/workflows/build_and_publish_yard_docs.yml"
|
64
|
+
- ".github/workflows/ci.yml"
|
65
|
+
- ".github/workflows/dependabot-rbi-updater.yml"
|
66
|
+
- ".github/workflows/publish_gem.yml"
|
67
|
+
- ".gitignore"
|
68
|
+
- ".rubocop.yml"
|
69
|
+
- ".ruby-version"
|
70
|
+
- ".toys/.toys.rb"
|
71
|
+
- ".toys/ci.rb"
|
72
|
+
- ".toys/rbi.rb"
|
73
|
+
- ".toys/rubocop.rb"
|
74
|
+
- ".toys/spoom.rb"
|
75
|
+
- ".toys/typecheck.rb"
|
76
|
+
- ".yardopts"
|
77
|
+
- Appraisals
|
78
|
+
- Gemfile
|
79
|
+
- Gemfile.lock
|
80
|
+
- LICENSE
|
81
|
+
- README.md
|
82
|
+
- bin/console
|
83
|
+
- bin/rubocop
|
84
|
+
- bin/setup
|
85
|
+
- bin/spoom
|
86
|
+
- bin/srb
|
87
|
+
- bin/tapioca
|
88
|
+
- bin/toys
|
89
|
+
- bin/yard
|
90
|
+
- lib/lunchmoney.rb
|
91
|
+
- lib/lunchmoney/api.rb
|
92
|
+
- lib/lunchmoney/api_call.rb
|
93
|
+
- lib/lunchmoney/assets/asset.rb
|
94
|
+
- lib/lunchmoney/assets/asset_calls.rb
|
95
|
+
- lib/lunchmoney/budget/budget.rb
|
96
|
+
- lib/lunchmoney/budget/budget_calls.rb
|
97
|
+
- lib/lunchmoney/budget/config.rb
|
98
|
+
- lib/lunchmoney/budget/data.rb
|
99
|
+
- lib/lunchmoney/categories/category/category.rb
|
100
|
+
- lib/lunchmoney/categories/category/child_category.rb
|
101
|
+
- lib/lunchmoney/categories/category_calls.rb
|
102
|
+
- lib/lunchmoney/configuration.rb
|
103
|
+
- lib/lunchmoney/crypto/crypto/crypto.rb
|
104
|
+
- lib/lunchmoney/crypto/crypto/crypto_base.rb
|
105
|
+
- lib/lunchmoney/crypto/crypto_calls.rb
|
106
|
+
- lib/lunchmoney/data_object.rb
|
107
|
+
- lib/lunchmoney/errors.rb
|
108
|
+
- lib/lunchmoney/exceptions.rb
|
109
|
+
- lib/lunchmoney/plaid_accounts/plaid_account.rb
|
110
|
+
- lib/lunchmoney/plaid_accounts/plaid_account_calls.rb
|
111
|
+
- lib/lunchmoney/recurring_expenses/recurring_expense/recurring_expense.rb
|
112
|
+
- lib/lunchmoney/recurring_expenses/recurring_expense/recurring_expense_base.rb
|
113
|
+
- lib/lunchmoney/recurring_expenses/recurring_expense_calls.rb
|
114
|
+
- lib/lunchmoney/tags/tag/tag.rb
|
115
|
+
- lib/lunchmoney/tags/tag/tag_base.rb
|
116
|
+
- lib/lunchmoney/tags/tag_calls.rb
|
117
|
+
- lib/lunchmoney/transactions/transaction/child_transaction.rb
|
118
|
+
- lib/lunchmoney/transactions/transaction/split.rb
|
119
|
+
- lib/lunchmoney/transactions/transaction/transaction.rb
|
120
|
+
- lib/lunchmoney/transactions/transaction/transaction_base.rb
|
121
|
+
- lib/lunchmoney/transactions/transaction/transaction_modification_base.rb
|
122
|
+
- lib/lunchmoney/transactions/transaction/update_transaction.rb
|
123
|
+
- lib/lunchmoney/transactions/transaction_calls.rb
|
124
|
+
- lib/lunchmoney/user/user.rb
|
125
|
+
- lib/lunchmoney/user/user_calls.rb
|
126
|
+
- lib/lunchmoney/validators.rb
|
127
|
+
- lib/lunchmoney/version.rb
|
128
|
+
- lunchmoney.gemspec
|
129
|
+
- sorbet/config
|
130
|
+
- sorbet/rbi/annotations/.gitattributes
|
131
|
+
- sorbet/rbi/annotations/activesupport.rbi
|
132
|
+
- sorbet/rbi/annotations/faraday.rbi
|
133
|
+
- sorbet/rbi/annotations/mocha.rbi
|
134
|
+
- sorbet/rbi/annotations/rainbow.rbi
|
135
|
+
- sorbet/rbi/annotations/webmock.rbi
|
136
|
+
- sorbet/rbi/dsl/.gitattributes
|
137
|
+
- sorbet/rbi/dsl/active_support/callbacks.rbi
|
138
|
+
- sorbet/rbi/gems/.gitattributes
|
139
|
+
- sorbet/rbi/gems/activesupport@7.1.3.rbi
|
140
|
+
- sorbet/rbi/gems/addressable@2.8.6.rbi
|
141
|
+
- sorbet/rbi/gems/appraisal@2.5.0.rbi
|
142
|
+
- sorbet/rbi/gems/ast@2.4.2.rbi
|
143
|
+
- sorbet/rbi/gems/base64@0.2.0.rbi
|
144
|
+
- sorbet/rbi/gems/bigdecimal@3.1.6.rbi
|
145
|
+
- sorbet/rbi/gems/coderay@1.1.3.rbi
|
146
|
+
- sorbet/rbi/gems/concurrent-ruby@1.2.3.rbi
|
147
|
+
- sorbet/rbi/gems/connection_pool@2.4.1.rbi
|
148
|
+
- sorbet/rbi/gems/crack@0.4.5.rbi
|
149
|
+
- sorbet/rbi/gems/dotenv@2.8.1.rbi
|
150
|
+
- sorbet/rbi/gems/drb@2.2.0.rbi
|
151
|
+
- sorbet/rbi/gems/erubi@1.12.0.rbi
|
152
|
+
- sorbet/rbi/gems/faraday-net_http@3.1.0.rbi
|
153
|
+
- sorbet/rbi/gems/faraday@2.9.0.rbi
|
154
|
+
- sorbet/rbi/gems/hashdiff@1.1.0.rbi
|
155
|
+
- sorbet/rbi/gems/i18n@1.14.1.rbi
|
156
|
+
- sorbet/rbi/gems/json@2.7.1.rbi
|
157
|
+
- sorbet/rbi/gems/language_server-protocol@3.17.0.3.rbi
|
158
|
+
- sorbet/rbi/gems/method_source@1.0.0.rbi
|
159
|
+
- sorbet/rbi/gems/minitest@5.21.2.rbi
|
160
|
+
- sorbet/rbi/gems/mocha@2.1.0.rbi
|
161
|
+
- sorbet/rbi/gems/mutex_m@0.2.0.rbi
|
162
|
+
- sorbet/rbi/gems/net-http@0.4.1.rbi
|
163
|
+
- sorbet/rbi/gems/netrc@0.11.0.rbi
|
164
|
+
- sorbet/rbi/gems/parallel@1.24.0.rbi
|
165
|
+
- sorbet/rbi/gems/parser@3.3.0.5.rbi
|
166
|
+
- sorbet/rbi/gems/prettier_print@1.2.1.rbi
|
167
|
+
- sorbet/rbi/gems/prism@0.19.0.rbi
|
168
|
+
- sorbet/rbi/gems/pry-sorbet@0.2.1.rbi
|
169
|
+
- sorbet/rbi/gems/pry@0.14.2.rbi
|
170
|
+
- sorbet/rbi/gems/public_suffix@5.0.4.rbi
|
171
|
+
- sorbet/rbi/gems/racc@1.7.3.rbi
|
172
|
+
- sorbet/rbi/gems/rack@3.0.8.rbi
|
173
|
+
- sorbet/rbi/gems/rainbow@3.1.1.rbi
|
174
|
+
- sorbet/rbi/gems/rake@13.1.0.rbi
|
175
|
+
- sorbet/rbi/gems/rbi@0.1.6.rbi
|
176
|
+
- sorbet/rbi/gems/regexp_parser@2.9.0.rbi
|
177
|
+
- sorbet/rbi/gems/rexml@3.2.6.rbi
|
178
|
+
- sorbet/rbi/gems/rubocop-ast@1.30.0.rbi
|
179
|
+
- sorbet/rbi/gems/rubocop-minitest@0.34.5.rbi
|
180
|
+
- sorbet/rbi/gems/rubocop-rails@2.23.1.rbi
|
181
|
+
- sorbet/rbi/gems/rubocop-shopify@2.14.0.rbi
|
182
|
+
- sorbet/rbi/gems/rubocop-sorbet@0.7.6.rbi
|
183
|
+
- sorbet/rbi/gems/rubocop@1.60.1.rbi
|
184
|
+
- sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi
|
185
|
+
- sorbet/rbi/gems/ruby2_keywords@0.0.5.rbi
|
186
|
+
- sorbet/rbi/gems/spoom@1.2.4.rbi
|
187
|
+
- sorbet/rbi/gems/syntax_tree@6.2.0.rbi
|
188
|
+
- sorbet/rbi/gems/tapioca@0.12.0.rbi
|
189
|
+
- sorbet/rbi/gems/thor@1.3.0.rbi
|
190
|
+
- sorbet/rbi/gems/toys-core@0.15.4.rbi
|
191
|
+
- sorbet/rbi/gems/toys@0.15.4.rbi
|
192
|
+
- sorbet/rbi/gems/tzinfo@2.0.6.rbi
|
193
|
+
- sorbet/rbi/gems/unicode-display_width@2.5.0.rbi
|
194
|
+
- sorbet/rbi/gems/uri@0.13.0.rbi
|
195
|
+
- sorbet/rbi/gems/vcr@6.2.0.rbi
|
196
|
+
- sorbet/rbi/gems/webmock@3.19.1.rbi
|
197
|
+
- sorbet/rbi/gems/yard-sorbet@0.8.1.rbi
|
198
|
+
- sorbet/rbi/gems/yard@0.9.34.rbi
|
199
|
+
- sorbet/shims/module.rbi
|
200
|
+
- sorbet/tapioca/require.rb
|
201
|
+
homepage: https://github.com/halorrr/lunchmoney
|
202
|
+
licenses:
|
203
|
+
- MIT
|
204
|
+
metadata:
|
205
|
+
allowed_push_host: https://rubygems.org
|
206
|
+
homepage_uri: https://github.com/halorrr/lunchmoney
|
207
|
+
source_code_uri: https://github.com/halorrr/lunchmoney
|
208
|
+
changelog_uri: https://github.com/halorrr/lunchmoney/releases
|
209
|
+
post_install_message:
|
210
|
+
rdoc_options: []
|
211
|
+
require_paths:
|
212
|
+
- lib
|
213
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
214
|
+
requirements:
|
215
|
+
- - ">="
|
216
|
+
- !ruby/object:Gem::Version
|
217
|
+
version: '3.1'
|
218
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
requirements: []
|
224
|
+
rubygems_version: 3.5.3
|
225
|
+
signing_key:
|
226
|
+
specification_version: 4
|
227
|
+
summary: LunchMoney API client library.
|
228
|
+
test_files: []
|