faithteams-api 4.0.1 → 4.2.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 +4 -4
- data/CHANGELOG.md +13 -1
- data/Gemfile.lock +58 -46
- data/faithteams-api.gemspec +1 -1
- data/lib/faithteams/api/v2/entity/fund.rb +10 -0
- data/lib/faithteams/version.rb +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10f45f4810b75e3d6f104533b17ec47223cfeb29b88247785962794b292d281e
|
4
|
+
data.tar.gz: 85e76ed90626d4d8e30ee4abfbac772543211c7040b0a454086c9af0e744a472
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ceb2ed942dfcacaf51d6b8668b32bc49570f3b20bc3175b5880d83b3b7b4cd8e4172610d297a567bcd15559d4557e4d37d1ca715a8da6e21a155c97a6d078b4
|
7
|
+
data.tar.gz: 23144cd0b3b2a4ad6672d307253d4ea3119c91e42154c9f829604fbd611f20a7db836391a42912fd134db7735b1547ee04f6bac0a914b1b240a7b31fb5b314f9
|
data/CHANGELOG.md
CHANGED
@@ -7,7 +7,19 @@ All notable changes to this project will be documented in this file.
|
|
7
7
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
8
8
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
9
9
|
|
10
|
-
## [4.0
|
10
|
+
## [4.2.0] - 2025-02-18
|
11
|
+
|
12
|
+
### Changed
|
13
|
+
|
14
|
+
1. Update ActiveSupport Version to support Rails 7.2.2.1. (IN-2565)
|
15
|
+
|
16
|
+
## [4.1.1] - 2024-12-19
|
17
|
+
|
18
|
+
### Added
|
19
|
+
|
20
|
+
1. Adds `Entity::Fund` `active?` and `default?` interrogatives
|
21
|
+
|
22
|
+
## [4.0.1] - 2024-09-16
|
11
23
|
|
12
24
|
This version adds support for Ruby 3.3.5. No real changes were required. We just needed to add some gems to the gemspec
|
13
25
|
to silence deprecation warnings.
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
faithteams-api (4.0
|
5
|
-
activesupport (~> 7.
|
4
|
+
faithteams-api (4.2.0)
|
5
|
+
activesupport (~> 7.2.2)
|
6
6
|
http (~> 5.1)
|
7
7
|
logger (~> 1.6.1)
|
8
8
|
ostruct (~> 0.6.0)
|
@@ -11,31 +11,41 @@ PATH
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
activesupport (7.
|
15
|
-
|
14
|
+
activesupport (7.2.2.1)
|
15
|
+
base64
|
16
|
+
benchmark (>= 0.3)
|
17
|
+
bigdecimal
|
18
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
19
|
+
connection_pool (>= 2.2.5)
|
20
|
+
drb
|
16
21
|
i18n (>= 1.6, < 2)
|
22
|
+
logger (>= 1.4.2)
|
17
23
|
minitest (>= 5.1)
|
18
|
-
|
19
|
-
|
20
|
-
|
24
|
+
securerandom (>= 0.3)
|
25
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
26
|
+
addressable (2.8.7)
|
27
|
+
public_suffix (>= 2.0.2, < 7.0)
|
21
28
|
ast (2.4.2)
|
22
29
|
base64 (0.2.0)
|
23
|
-
|
30
|
+
benchmark (0.4.0)
|
31
|
+
bigdecimal (3.1.8)
|
24
32
|
byebug (11.1.3)
|
25
33
|
coderay (1.1.3)
|
26
|
-
concurrent-ruby (1.
|
34
|
+
concurrent-ruby (1.3.4)
|
35
|
+
connection_pool (2.4.1)
|
27
36
|
crack (1.0.0)
|
28
37
|
bigdecimal
|
29
38
|
rexml
|
30
39
|
diff-lcs (1.5.1)
|
31
|
-
docile (1.4.
|
40
|
+
docile (1.4.1)
|
32
41
|
domain_name (0.6.20240107)
|
33
|
-
|
42
|
+
drb (2.2.1)
|
43
|
+
ffi (1.17.0)
|
34
44
|
ffi-compiler (1.3.2)
|
35
45
|
ffi (>= 1.15.5)
|
36
46
|
rake
|
37
47
|
formatador (1.1.0)
|
38
|
-
guard (2.
|
48
|
+
guard (2.19.0)
|
39
49
|
formatador (>= 0.2.4)
|
40
50
|
listen (>= 2.7, < 4.0)
|
41
51
|
lumberjack (>= 1.0.12, < 2.0)
|
@@ -49,19 +59,19 @@ GEM
|
|
49
59
|
guard (~> 2.1)
|
50
60
|
guard-compat (~> 1.1)
|
51
61
|
rspec (>= 2.99.0, < 4.0)
|
52
|
-
hashdiff (1.1.
|
62
|
+
hashdiff (1.1.2)
|
53
63
|
http (5.2.0)
|
54
64
|
addressable (~> 2.8)
|
55
65
|
base64 (~> 0.1)
|
56
66
|
http-cookie (~> 1.0)
|
57
67
|
http-form_data (~> 2.2)
|
58
68
|
llhttp-ffi (~> 0.5.0)
|
59
|
-
http-cookie (1.0.
|
69
|
+
http-cookie (1.0.8)
|
60
70
|
domain_name (~> 0.5)
|
61
71
|
http-form_data (2.3.0)
|
62
|
-
i18n (1.14.
|
72
|
+
i18n (1.14.6)
|
63
73
|
concurrent-ruby (~> 1.0)
|
64
|
-
json (2.
|
74
|
+
json (2.9.0)
|
65
75
|
language_server-protocol (3.17.0.3)
|
66
76
|
listen (3.9.0)
|
67
77
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
@@ -69,58 +79,57 @@ GEM
|
|
69
79
|
llhttp-ffi (0.5.0)
|
70
80
|
ffi-compiler (~> 1.0)
|
71
81
|
rake (~> 13.0)
|
72
|
-
logger (1.6.
|
82
|
+
logger (1.6.3)
|
73
83
|
lumberjack (1.2.10)
|
74
|
-
method_source (1.
|
75
|
-
minitest (5.
|
84
|
+
method_source (1.1.0)
|
85
|
+
minitest (5.25.4)
|
76
86
|
nenv (0.3.0)
|
77
87
|
notiffany (0.1.3)
|
78
88
|
nenv (~> 0.1)
|
79
89
|
shellany (~> 0.0)
|
80
|
-
ostruct (0.6.
|
81
|
-
parallel (1.
|
82
|
-
parser (3.3.0
|
90
|
+
ostruct (0.6.1)
|
91
|
+
parallel (1.26.3)
|
92
|
+
parser (3.3.6.0)
|
83
93
|
ast (~> 2.4.1)
|
84
94
|
racc
|
85
|
-
pry (0.
|
95
|
+
pry (0.15.0)
|
86
96
|
coderay (~> 1.1)
|
87
97
|
method_source (~> 1.0)
|
88
|
-
public_suffix (
|
89
|
-
racc (1.
|
98
|
+
public_suffix (6.0.1)
|
99
|
+
racc (1.8.1)
|
90
100
|
rainbow (3.1.1)
|
91
|
-
rake (13.2.
|
101
|
+
rake (13.2.1)
|
92
102
|
rb-fsevent (0.11.2)
|
93
|
-
rb-inotify (0.
|
103
|
+
rb-inotify (0.11.1)
|
94
104
|
ffi (~> 1.0)
|
95
|
-
regexp_parser (2.9.
|
96
|
-
rexml (3.3.
|
105
|
+
regexp_parser (2.9.3)
|
106
|
+
rexml (3.3.9)
|
97
107
|
rspec (3.13.0)
|
98
108
|
rspec-core (~> 3.13.0)
|
99
109
|
rspec-expectations (~> 3.13.0)
|
100
110
|
rspec-mocks (~> 3.13.0)
|
101
|
-
rspec-core (3.13.
|
111
|
+
rspec-core (3.13.2)
|
102
112
|
rspec-support (~> 3.13.0)
|
103
|
-
rspec-expectations (3.13.
|
113
|
+
rspec-expectations (3.13.3)
|
104
114
|
diff-lcs (>= 1.2.0, < 2.0)
|
105
115
|
rspec-support (~> 3.13.0)
|
106
|
-
rspec-mocks (3.13.
|
116
|
+
rspec-mocks (3.13.2)
|
107
117
|
diff-lcs (>= 1.2.0, < 2.0)
|
108
118
|
rspec-support (~> 3.13.0)
|
109
|
-
rspec-support (3.13.
|
110
|
-
rubocop (1.
|
119
|
+
rspec-support (3.13.2)
|
120
|
+
rubocop (1.69.2)
|
111
121
|
json (~> 2.3)
|
112
122
|
language_server-protocol (>= 3.17.0)
|
113
123
|
parallel (~> 1.10)
|
114
124
|
parser (>= 3.3.0.2)
|
115
125
|
rainbow (>= 2.2.2, < 4.0)
|
116
|
-
regexp_parser (>=
|
117
|
-
|
118
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
126
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
127
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
119
128
|
ruby-progressbar (~> 1.7)
|
120
|
-
unicode-display_width (>= 2.4.0, <
|
121
|
-
rubocop-ast (1.
|
122
|
-
parser (>= 3.3.0
|
123
|
-
rubocop-performance (1.
|
129
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
130
|
+
rubocop-ast (1.37.0)
|
131
|
+
parser (>= 3.3.1.0)
|
132
|
+
rubocop-performance (1.23.0)
|
124
133
|
rubocop (>= 1.48.1, < 2.0)
|
125
134
|
rubocop-ast (>= 1.31.1, < 2.0)
|
126
135
|
rubocop-rake (0.6.0)
|
@@ -128,22 +137,25 @@ GEM
|
|
128
137
|
rubocop-rspec (1.42.0)
|
129
138
|
rubocop (>= 0.87.0)
|
130
139
|
ruby-progressbar (1.13.0)
|
140
|
+
securerandom (0.4.1)
|
131
141
|
shellany (0.0.1)
|
132
142
|
simplecov (0.22.0)
|
133
143
|
docile (~> 1.1)
|
134
144
|
simplecov-html (~> 0.11)
|
135
145
|
simplecov_json_formatter (~> 0.1)
|
136
|
-
simplecov-html (0.
|
146
|
+
simplecov-html (0.13.1)
|
137
147
|
simplecov_json_formatter (0.1.4)
|
138
|
-
thor (1.3.
|
148
|
+
thor (1.3.2)
|
139
149
|
tzinfo (2.0.6)
|
140
150
|
concurrent-ruby (~> 1.0)
|
141
|
-
unicode-display_width (
|
142
|
-
|
151
|
+
unicode-display_width (3.1.2)
|
152
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
153
|
+
unicode-emoji (4.0.4)
|
154
|
+
webmock (3.24.0)
|
143
155
|
addressable (>= 2.8.0)
|
144
156
|
crack (>= 0.3.2)
|
145
157
|
hashdiff (>= 0.4.0, < 2.0.0)
|
146
|
-
yard (0.9.
|
158
|
+
yard (0.9.37)
|
147
159
|
|
148
160
|
PLATFORMS
|
149
161
|
ruby
|
data/faithteams-api.gemspec
CHANGED
@@ -32,7 +32,7 @@ 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.
|
35
|
+
spec.add_dependency "activesupport", "~> 7.2.2"
|
36
36
|
spec.add_dependency "http", "~> 5.1"
|
37
37
|
spec.add_dependency "logger", "~> 1.6.1"
|
38
38
|
spec.add_dependency "ostruct", "~> 0.6.0"
|
@@ -11,6 +11,11 @@ module FaithTeams
|
|
11
11
|
read_attribute(:isDefault).presence
|
12
12
|
end
|
13
13
|
|
14
|
+
# @return [Boolean]
|
15
|
+
def default?
|
16
|
+
default == "Y"
|
17
|
+
end
|
18
|
+
|
14
19
|
# @return [String, nil]
|
15
20
|
def description
|
16
21
|
read_attribute(:description).presence
|
@@ -41,6 +46,11 @@ module FaithTeams
|
|
41
46
|
read_attribute(:status).presence
|
42
47
|
end
|
43
48
|
|
49
|
+
# @return [Boolean]
|
50
|
+
def active?
|
51
|
+
status == "A"
|
52
|
+
end
|
53
|
+
|
44
54
|
# @return [String, nil] "T" for true?, "Y" for yes?
|
45
55
|
def tax_deductible
|
46
56
|
read_attribute(:taxDeductible).presence
|
data/lib/faithteams/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: faithteams-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0
|
4
|
+
version: 4.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tithe.ly Integrations
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: activesupport
|
@@ -16,14 +15,14 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - "~>"
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 7.
|
18
|
+
version: 7.2.2
|
20
19
|
type: :runtime
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
23
|
- - "~>"
|
25
24
|
- !ruby/object:Gem::Version
|
26
|
-
version: 7.
|
25
|
+
version: 7.2.2
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: http
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -308,7 +307,6 @@ metadata:
|
|
308
307
|
changelog_uri: https://github.com/tithely/faithteams-api/blob/master/CHANGELOG.md
|
309
308
|
bug_tracker_uri: https://github.com/tithely/faithteams-api/issues
|
310
309
|
documentation_uri: https://github.com/tithely/faithteams-api/blob/master/README.md
|
311
|
-
post_install_message:
|
312
310
|
rdoc_options: []
|
313
311
|
require_paths:
|
314
312
|
- lib
|
@@ -323,8 +321,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
323
321
|
- !ruby/object:Gem::Version
|
324
322
|
version: '0'
|
325
323
|
requirements: []
|
326
|
-
rubygems_version: 3.
|
327
|
-
signing_key:
|
324
|
+
rubygems_version: 3.6.2
|
328
325
|
specification_version: 4
|
329
326
|
summary: A Faithteams API client gem.
|
330
327
|
test_files: []
|