faithteams-api 4.2.0 → 4.6.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/.github/workflows/editorconfig.yml +2 -2
- data/.github/workflows/rubocop.yml +2 -2
- data/.github/workflows/rubygems.yml +2 -2
- data/.github/workflows/tester.yml +2 -2
- data/.github/workflows/yard.yml +2 -2
- data/.gitignore +1 -0
- data/.rubocop.yml +1 -2
- data/.tool-versions +1 -2
- data/CHANGELOG.md +37 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +81 -70
- data/README.md +19 -0
- data/faithteams-api/.env.template +4 -0
- data/faithteams-api/Authenticate.bru +25 -0
- data/faithteams-api/api-v2.faithteams.com/Batch/Batch Create.bru +23 -0
- data/faithteams-api/api-v2.faithteams.com/Batch/Batch Totals.bru +19 -0
- data/faithteams-api/api-v2.faithteams.com/Batch/Batch Update.bru +27 -0
- data/faithteams-api/api-v2.faithteams.com/Batch/Batch.bru +15 -0
- data/faithteams-api/api-v2.faithteams.com/Batch/Batches.bru +32 -0
- data/faithteams-api/api-v2.faithteams.com/Batch/folder.bru +8 -0
- data/faithteams-api/api-v2.faithteams.com/Contribution/Contribution Create.bru +40 -0
- data/faithteams-api/api-v2.faithteams.com/Contribution/Contribution.bru +15 -0
- data/faithteams-api/api-v2.faithteams.com/Contribution/Contributions.bru +34 -0
- data/faithteams-api/api-v2.faithteams.com/Contribution/folder.bru +8 -0
- data/faithteams-api/api-v2.faithteams.com/Contribution Type/Contribution Type.bru +15 -0
- data/faithteams-api/api-v2.faithteams.com/Contribution Type/Contribution Types.bru +20 -0
- data/faithteams-api/api-v2.faithteams.com/Contribution Type/folder.bru +8 -0
- data/faithteams-api/api-v2.faithteams.com/Error/Integer Too Big.bru +15 -0
- data/faithteams-api/api-v2.faithteams.com/Error/Not Found.bru +15 -0
- data/faithteams-api/api-v2.faithteams.com/Error/folder.bru +8 -0
- data/faithteams-api/api-v2.faithteams.com/Fund/Fund Create.bru +30 -0
- data/faithteams-api/api-v2.faithteams.com/Fund/Fund Update.bru +32 -0
- data/faithteams-api/api-v2.faithteams.com/Fund/Fund.bru +15 -0
- data/faithteams-api/api-v2.faithteams.com/Fund/Funds.bru +20 -0
- data/faithteams-api/api-v2.faithteams.com/Fund/folder.bru +8 -0
- data/faithteams-api/api-v2.faithteams.com/folder.bru +13 -0
- data/faithteams-api/app.faithteams.com-api-v2/Authenticate.bru +26 -0
- data/faithteams-api/app.faithteams.com-api-v2/Checkins.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/Error/Not Found 2.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/Error/Not Found.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/Error/folder.bru +8 -0
- data/faithteams-api/app.faithteams.com-api-v2/People/Create Person.bru +28 -0
- data/faithteams-api/app.faithteams.com-api-v2/People/People Memberships.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/People/People.bru +27 -0
- data/faithteams-api/app.faithteams.com-api-v2/People/Person Tags.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/People/Person.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/People/Update Person.bru +26 -0
- data/faithteams-api/app.faithteams.com-api-v2/People/folder.bru +8 -0
- data/faithteams-api/app.faithteams.com-api-v2/Rules.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/Team & Organization/Organization.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/Team & Organization/Teams.bru +21 -0
- data/faithteams-api/app.faithteams.com-api-v2/Team & Organization/folder.bru +8 -0
- data/faithteams-api/app.faithteams.com-api-v2/Unsubscribes.bru +19 -0
- data/faithteams-api/app.faithteams.com-api-v2/User/User.bru +15 -0
- data/faithteams-api/app.faithteams.com-api-v2/User/Users.bru +24 -0
- data/faithteams-api/app.faithteams.com-api-v2/User/folder.bru +8 -0
- data/faithteams-api/app.faithteams.com-api-v2/folder.bru +12 -0
- data/faithteams-api/bruno.json +9 -0
- data/faithteams-api/environments/FaithTeams.bru +17 -0
- data/faithteams-api.gemspec +6 -9
- data/lib/faithteams/version.rb +1 -1
- metadata +64 -56
data/faithteams-api.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = "Provides methods and utilities for interacting with the faithteams API."
|
|
13
13
|
spec.homepage = "https://github.com/tithely/faithteams-api"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 3.
|
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 3.3.0")
|
|
16
16
|
|
|
17
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
18
18
|
|
|
@@ -32,21 +32,18 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
33
33
|
spec.require_paths = ["lib"]
|
|
34
34
|
|
|
35
|
-
spec.add_dependency "activesupport", "~> 7.2
|
|
35
|
+
spec.add_dependency "activesupport", "~> 7.2"
|
|
36
36
|
spec.add_dependency "http", "~> 5.1"
|
|
37
|
-
spec.add_dependency "logger", "~> 1.6.1"
|
|
38
|
-
spec.add_dependency "ostruct", "~> 0.6.0"
|
|
39
|
-
spec.add_dependency "rexml", "~> 3.3.6" # only needs to be specified to address security warning
|
|
40
37
|
|
|
41
38
|
spec.add_development_dependency "byebug", "~> 11.1"
|
|
42
39
|
spec.add_development_dependency "guard-rspec", "~> 4.7"
|
|
43
40
|
spec.add_development_dependency "simplecov", "~> 0.21"
|
|
44
41
|
spec.add_development_dependency "rake", "~> 13.0"
|
|
45
42
|
spec.add_development_dependency "rspec", "~> 3.12"
|
|
46
|
-
spec.add_development_dependency "rubocop", "~> 1.
|
|
47
|
-
spec.add_development_dependency "rubocop-performance", "~> 1.
|
|
48
|
-
spec.add_development_dependency "rubocop-rake", "~> 0.
|
|
49
|
-
spec.add_development_dependency "rubocop-rspec", "~>
|
|
43
|
+
spec.add_development_dependency "rubocop", "~> 1.73"
|
|
44
|
+
spec.add_development_dependency "rubocop-performance", "~> 1.24"
|
|
45
|
+
spec.add_development_dependency "rubocop-rake", "~> 0.7"
|
|
46
|
+
spec.add_development_dependency "rubocop-rspec", "~> 3.5"
|
|
50
47
|
spec.add_development_dependency "webmock", "~> 3.18"
|
|
51
48
|
spec.add_development_dependency "yard", "~> 0.9"
|
|
52
49
|
end
|
data/lib/faithteams/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: faithteams-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tithe.ly Integrations
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: exe
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-03-30 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: activesupport
|
|
@@ -15,14 +16,14 @@ dependencies:
|
|
|
15
16
|
requirements:
|
|
16
17
|
- - "~>"
|
|
17
18
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 7.2
|
|
19
|
+
version: '7.2'
|
|
19
20
|
type: :runtime
|
|
20
21
|
prerelease: false
|
|
21
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
23
|
requirements:
|
|
23
24
|
- - "~>"
|
|
24
25
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 7.2
|
|
26
|
+
version: '7.2'
|
|
26
27
|
- !ruby/object:Gem::Dependency
|
|
27
28
|
name: http
|
|
28
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -37,48 +38,6 @@ dependencies:
|
|
|
37
38
|
- - "~>"
|
|
38
39
|
- !ruby/object:Gem::Version
|
|
39
40
|
version: '5.1'
|
|
40
|
-
- !ruby/object:Gem::Dependency
|
|
41
|
-
name: logger
|
|
42
|
-
requirement: !ruby/object:Gem::Requirement
|
|
43
|
-
requirements:
|
|
44
|
-
- - "~>"
|
|
45
|
-
- !ruby/object:Gem::Version
|
|
46
|
-
version: 1.6.1
|
|
47
|
-
type: :runtime
|
|
48
|
-
prerelease: false
|
|
49
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
-
requirements:
|
|
51
|
-
- - "~>"
|
|
52
|
-
- !ruby/object:Gem::Version
|
|
53
|
-
version: 1.6.1
|
|
54
|
-
- !ruby/object:Gem::Dependency
|
|
55
|
-
name: ostruct
|
|
56
|
-
requirement: !ruby/object:Gem::Requirement
|
|
57
|
-
requirements:
|
|
58
|
-
- - "~>"
|
|
59
|
-
- !ruby/object:Gem::Version
|
|
60
|
-
version: 0.6.0
|
|
61
|
-
type: :runtime
|
|
62
|
-
prerelease: false
|
|
63
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
-
requirements:
|
|
65
|
-
- - "~>"
|
|
66
|
-
- !ruby/object:Gem::Version
|
|
67
|
-
version: 0.6.0
|
|
68
|
-
- !ruby/object:Gem::Dependency
|
|
69
|
-
name: rexml
|
|
70
|
-
requirement: !ruby/object:Gem::Requirement
|
|
71
|
-
requirements:
|
|
72
|
-
- - "~>"
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
version: 3.3.6
|
|
75
|
-
type: :runtime
|
|
76
|
-
prerelease: false
|
|
77
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
-
requirements:
|
|
79
|
-
- - "~>"
|
|
80
|
-
- !ruby/object:Gem::Version
|
|
81
|
-
version: 3.3.6
|
|
82
41
|
- !ruby/object:Gem::Dependency
|
|
83
42
|
name: byebug
|
|
84
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -155,56 +114,56 @@ dependencies:
|
|
|
155
114
|
requirements:
|
|
156
115
|
- - "~>"
|
|
157
116
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: '1.
|
|
117
|
+
version: '1.73'
|
|
159
118
|
type: :development
|
|
160
119
|
prerelease: false
|
|
161
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
162
121
|
requirements:
|
|
163
122
|
- - "~>"
|
|
164
123
|
- !ruby/object:Gem::Version
|
|
165
|
-
version: '1.
|
|
124
|
+
version: '1.73'
|
|
166
125
|
- !ruby/object:Gem::Dependency
|
|
167
126
|
name: rubocop-performance
|
|
168
127
|
requirement: !ruby/object:Gem::Requirement
|
|
169
128
|
requirements:
|
|
170
129
|
- - "~>"
|
|
171
130
|
- !ruby/object:Gem::Version
|
|
172
|
-
version: '1.
|
|
131
|
+
version: '1.24'
|
|
173
132
|
type: :development
|
|
174
133
|
prerelease: false
|
|
175
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
176
135
|
requirements:
|
|
177
136
|
- - "~>"
|
|
178
137
|
- !ruby/object:Gem::Version
|
|
179
|
-
version: '1.
|
|
138
|
+
version: '1.24'
|
|
180
139
|
- !ruby/object:Gem::Dependency
|
|
181
140
|
name: rubocop-rake
|
|
182
141
|
requirement: !ruby/object:Gem::Requirement
|
|
183
142
|
requirements:
|
|
184
143
|
- - "~>"
|
|
185
144
|
- !ruby/object:Gem::Version
|
|
186
|
-
version: '0.
|
|
145
|
+
version: '0.7'
|
|
187
146
|
type: :development
|
|
188
147
|
prerelease: false
|
|
189
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
190
149
|
requirements:
|
|
191
150
|
- - "~>"
|
|
192
151
|
- !ruby/object:Gem::Version
|
|
193
|
-
version: '0.
|
|
152
|
+
version: '0.7'
|
|
194
153
|
- !ruby/object:Gem::Dependency
|
|
195
154
|
name: rubocop-rspec
|
|
196
155
|
requirement: !ruby/object:Gem::Requirement
|
|
197
156
|
requirements:
|
|
198
157
|
- - "~>"
|
|
199
158
|
- !ruby/object:Gem::Version
|
|
200
|
-
version: '
|
|
159
|
+
version: '3.5'
|
|
201
160
|
type: :development
|
|
202
161
|
prerelease: false
|
|
203
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
204
163
|
requirements:
|
|
205
164
|
- - "~>"
|
|
206
165
|
- !ruby/object:Gem::Version
|
|
207
|
-
version: '
|
|
166
|
+
version: '3.5'
|
|
208
167
|
- !ruby/object:Gem::Dependency
|
|
209
168
|
name: webmock
|
|
210
169
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -264,6 +223,53 @@ files:
|
|
|
264
223
|
- bin/console
|
|
265
224
|
- bin/setup
|
|
266
225
|
- faithteams-api.gemspec
|
|
226
|
+
- faithteams-api/.env.template
|
|
227
|
+
- faithteams-api/Authenticate.bru
|
|
228
|
+
- faithteams-api/api-v2.faithteams.com/Batch/Batch Create.bru
|
|
229
|
+
- faithteams-api/api-v2.faithteams.com/Batch/Batch Totals.bru
|
|
230
|
+
- faithteams-api/api-v2.faithteams.com/Batch/Batch Update.bru
|
|
231
|
+
- faithteams-api/api-v2.faithteams.com/Batch/Batch.bru
|
|
232
|
+
- faithteams-api/api-v2.faithteams.com/Batch/Batches.bru
|
|
233
|
+
- faithteams-api/api-v2.faithteams.com/Batch/folder.bru
|
|
234
|
+
- faithteams-api/api-v2.faithteams.com/Contribution Type/Contribution Type.bru
|
|
235
|
+
- faithteams-api/api-v2.faithteams.com/Contribution Type/Contribution Types.bru
|
|
236
|
+
- faithteams-api/api-v2.faithteams.com/Contribution Type/folder.bru
|
|
237
|
+
- faithteams-api/api-v2.faithteams.com/Contribution/Contribution Create.bru
|
|
238
|
+
- faithteams-api/api-v2.faithteams.com/Contribution/Contribution.bru
|
|
239
|
+
- faithteams-api/api-v2.faithteams.com/Contribution/Contributions.bru
|
|
240
|
+
- faithteams-api/api-v2.faithteams.com/Contribution/folder.bru
|
|
241
|
+
- faithteams-api/api-v2.faithteams.com/Error/Integer Too Big.bru
|
|
242
|
+
- faithteams-api/api-v2.faithteams.com/Error/Not Found.bru
|
|
243
|
+
- faithteams-api/api-v2.faithteams.com/Error/folder.bru
|
|
244
|
+
- faithteams-api/api-v2.faithteams.com/Fund/Fund Create.bru
|
|
245
|
+
- faithteams-api/api-v2.faithteams.com/Fund/Fund Update.bru
|
|
246
|
+
- faithteams-api/api-v2.faithteams.com/Fund/Fund.bru
|
|
247
|
+
- faithteams-api/api-v2.faithteams.com/Fund/Funds.bru
|
|
248
|
+
- faithteams-api/api-v2.faithteams.com/Fund/folder.bru
|
|
249
|
+
- faithteams-api/api-v2.faithteams.com/folder.bru
|
|
250
|
+
- faithteams-api/app.faithteams.com-api-v2/Authenticate.bru
|
|
251
|
+
- faithteams-api/app.faithteams.com-api-v2/Checkins.bru
|
|
252
|
+
- faithteams-api/app.faithteams.com-api-v2/Error/Not Found 2.bru
|
|
253
|
+
- faithteams-api/app.faithteams.com-api-v2/Error/Not Found.bru
|
|
254
|
+
- faithteams-api/app.faithteams.com-api-v2/Error/folder.bru
|
|
255
|
+
- faithteams-api/app.faithteams.com-api-v2/People/Create Person.bru
|
|
256
|
+
- faithteams-api/app.faithteams.com-api-v2/People/People Memberships.bru
|
|
257
|
+
- faithteams-api/app.faithteams.com-api-v2/People/People.bru
|
|
258
|
+
- faithteams-api/app.faithteams.com-api-v2/People/Person Tags.bru
|
|
259
|
+
- faithteams-api/app.faithteams.com-api-v2/People/Person.bru
|
|
260
|
+
- faithteams-api/app.faithteams.com-api-v2/People/Update Person.bru
|
|
261
|
+
- faithteams-api/app.faithteams.com-api-v2/People/folder.bru
|
|
262
|
+
- faithteams-api/app.faithteams.com-api-v2/Rules.bru
|
|
263
|
+
- faithteams-api/app.faithteams.com-api-v2/Team & Organization/Organization.bru
|
|
264
|
+
- faithteams-api/app.faithteams.com-api-v2/Team & Organization/Teams.bru
|
|
265
|
+
- faithteams-api/app.faithteams.com-api-v2/Team & Organization/folder.bru
|
|
266
|
+
- faithteams-api/app.faithteams.com-api-v2/Unsubscribes.bru
|
|
267
|
+
- faithteams-api/app.faithteams.com-api-v2/User/User.bru
|
|
268
|
+
- faithteams-api/app.faithteams.com-api-v2/User/Users.bru
|
|
269
|
+
- faithteams-api/app.faithteams.com-api-v2/User/folder.bru
|
|
270
|
+
- faithteams-api/app.faithteams.com-api-v2/folder.bru
|
|
271
|
+
- faithteams-api/bruno.json
|
|
272
|
+
- faithteams-api/environments/FaithTeams.bru
|
|
267
273
|
- guides/api_client_interface.md
|
|
268
274
|
- guides/release-process.md
|
|
269
275
|
- lib/faithteams.rb
|
|
@@ -307,6 +313,7 @@ metadata:
|
|
|
307
313
|
changelog_uri: https://github.com/tithely/faithteams-api/blob/master/CHANGELOG.md
|
|
308
314
|
bug_tracker_uri: https://github.com/tithely/faithteams-api/issues
|
|
309
315
|
documentation_uri: https://github.com/tithely/faithteams-api/blob/master/README.md
|
|
316
|
+
post_install_message:
|
|
310
317
|
rdoc_options: []
|
|
311
318
|
require_paths:
|
|
312
319
|
- lib
|
|
@@ -314,14 +321,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
314
321
|
requirements:
|
|
315
322
|
- - ">="
|
|
316
323
|
- !ruby/object:Gem::Version
|
|
317
|
-
version: 3.
|
|
324
|
+
version: 3.3.0
|
|
318
325
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
319
326
|
requirements:
|
|
320
327
|
- - ">="
|
|
321
328
|
- !ruby/object:Gem::Version
|
|
322
329
|
version: '0'
|
|
323
330
|
requirements: []
|
|
324
|
-
rubygems_version: 3.
|
|
331
|
+
rubygems_version: 3.5.22
|
|
332
|
+
signing_key:
|
|
325
333
|
specification_version: 4
|
|
326
334
|
summary: A Faithteams API client gem.
|
|
327
335
|
test_files: []
|