sul_orcid_client 0.8.1 → 0.9.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/.rubocop.yml +4 -6
- data/Gemfile.lock +73 -70
- data/lib/sul_orcid_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 14af045ff4e5106b1113cd88f302ab63f5c7f6a60888c1d33f9612e4c6395105
|
|
4
|
+
data.tar.gz: 55c8490af34f5c1950b7b331db36b150f933f066cc180e69e481e994ff0a678b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f630346de71178e2e8100cb6549ca1ee71ef60dc6f3d21334729f50183f27826deeec216ece97f9caf43b855c5ba2f9e2ca5865227a728db88109113ca31c82f
|
|
7
|
+
data.tar.gz: 773a1e55df8709bbc88728b2552d2e8bef956fdc047a6a86efd5451d743b2b40895897e7c15c02dcf891645a06353d294002c0e0ecd66ed8f21582cc4e2a20e2
|
data/.rubocop.yml
CHANGED
|
@@ -40,13 +40,13 @@ RSpec/SubjectDeclaration: # new in 2.5
|
|
|
40
40
|
Enabled: true
|
|
41
41
|
RSpec/VerifiedDoubleReference: # new in 2.10.0
|
|
42
42
|
Enabled: true
|
|
43
|
-
Capybara/NegationMatcher: # new in 2.14
|
|
43
|
+
Capybara/RSpec/NegationMatcher: # new in 2.14
|
|
44
44
|
Enabled: true
|
|
45
45
|
Capybara/SpecificActions: # new in 2.14
|
|
46
46
|
Enabled: true
|
|
47
47
|
Capybara/SpecificFinders: # new in 2.13
|
|
48
48
|
Enabled: true
|
|
49
|
-
Capybara/SpecificMatcher: # new in 2.12
|
|
49
|
+
Capybara/RSpec/SpecificMatcher: # new in 2.12
|
|
50
50
|
Enabled: true
|
|
51
51
|
FactoryBot/ConsistentParenthesesStyle: # new in 2.14
|
|
52
52
|
Enabled: true
|
|
@@ -63,7 +63,7 @@ RSpec/MultipleExpectations:
|
|
|
63
63
|
Enabled: false
|
|
64
64
|
RSpec/ExampleLength:
|
|
65
65
|
Enabled: false
|
|
66
|
-
Capybara/MatchStyle: # new in 2.17
|
|
66
|
+
Capybara/RSpec/MatchStyle: # new in 2.17
|
|
67
67
|
Enabled: true
|
|
68
68
|
FactoryBot/AssociationStyle: # new in 2.23
|
|
69
69
|
Enabled: true
|
|
@@ -337,8 +337,6 @@ Performance/StringInclude: # new in 1.7
|
|
|
337
337
|
Enabled: true
|
|
338
338
|
Performance/Sum: # new in 1.8
|
|
339
339
|
Enabled: true
|
|
340
|
-
Capybara/ClickLinkOrButtonStyle: # new in 2.19
|
|
341
|
-
Enabled: true
|
|
342
340
|
Capybara/RedundantWithinFind: # new in 2.20
|
|
343
341
|
Enabled: true
|
|
344
342
|
Capybara/RSpec/HaveSelector: # new in 2.19
|
|
@@ -478,7 +476,7 @@ Style/TallyMethod: # new in 1.85
|
|
|
478
476
|
Enabled: true
|
|
479
477
|
Capybara/FindAllFirst: # new in 2.22
|
|
480
478
|
Enabled: true
|
|
481
|
-
Capybara/NegationMatcherAfterVisit: # new in 2.22
|
|
479
|
+
Capybara/RSpec/NegationMatcherAfterVisit: # new in 2.22
|
|
482
480
|
Enabled: true
|
|
483
481
|
FactoryBot/ExcessiveCreateList: # new in 2.25
|
|
484
482
|
Enabled: true
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
sul_orcid_client (0.
|
|
4
|
+
sul_orcid_client (0.9.0)
|
|
5
5
|
activesupport (>= 4.2)
|
|
6
6
|
cocina-models (~> 0.90)
|
|
7
7
|
faraday
|
|
@@ -12,7 +12,7 @@ PATH
|
|
|
12
12
|
GEM
|
|
13
13
|
remote: https://rubygems.org/
|
|
14
14
|
specs:
|
|
15
|
-
activesupport (8.1.
|
|
15
|
+
activesupport (8.1.3.1)
|
|
16
16
|
base64
|
|
17
17
|
bigdecimal
|
|
18
18
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
@@ -25,29 +25,41 @@ GEM
|
|
|
25
25
|
securerandom (>= 0.3)
|
|
26
26
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
27
27
|
uri (>= 0.13.1)
|
|
28
|
-
addressable (2.
|
|
28
|
+
addressable (2.9.0)
|
|
29
29
|
public_suffix (>= 2.0.2, < 8.0)
|
|
30
|
+
anonymous_loader (0.1.3)
|
|
31
|
+
version_gem (~> 1.1, >= 1.1.14)
|
|
30
32
|
ast (2.4.3)
|
|
31
33
|
attr_extras (7.1.0)
|
|
34
|
+
auth-sanitizer (0.2.3)
|
|
35
|
+
version_gem (~> 1.1, >= 1.1.14)
|
|
32
36
|
base64 (0.3.0)
|
|
33
|
-
bigdecimal (4.
|
|
37
|
+
bigdecimal (4.1.2)
|
|
34
38
|
byebug (13.0.0)
|
|
35
39
|
reline (>= 0.6.0)
|
|
36
|
-
cocina-models (0.
|
|
40
|
+
cocina-models (0.133.0)
|
|
37
41
|
activesupport
|
|
42
|
+
cocina_display
|
|
38
43
|
deprecation
|
|
39
44
|
dry-struct (~> 1.0)
|
|
40
45
|
dry-types (~> 1.1)
|
|
41
46
|
edtf
|
|
42
47
|
equivalent-xml
|
|
43
48
|
i18n
|
|
44
|
-
|
|
45
|
-
jsonpath
|
|
49
|
+
jsonschema_rs
|
|
46
50
|
nokogiri
|
|
47
51
|
super_diff
|
|
48
52
|
thor
|
|
49
53
|
zeitwerk (~> 2.1)
|
|
50
|
-
|
|
54
|
+
cocina_display (2.12.0)
|
|
55
|
+
activesupport (>= 7)
|
|
56
|
+
edtf (~> 3.2)
|
|
57
|
+
geo_coord (~> 0.2)
|
|
58
|
+
i18n
|
|
59
|
+
iso8601 (~> 0.13.0)
|
|
60
|
+
janeway-jsonpath (>= 0.6, < 2)
|
|
61
|
+
zeitwerk (~> 2.7)
|
|
62
|
+
concurrent-ruby (1.3.8)
|
|
51
63
|
connection_pool (3.0.2)
|
|
52
64
|
crack (1.0.1)
|
|
53
65
|
bigdecimal
|
|
@@ -55,7 +67,6 @@ GEM
|
|
|
55
67
|
deprecation (1.1.0)
|
|
56
68
|
activesupport
|
|
57
69
|
diff-lcs (1.6.2)
|
|
58
|
-
docile (1.4.1)
|
|
59
70
|
drb (2.2.3)
|
|
60
71
|
dry-core (1.2.0)
|
|
61
72
|
concurrent-ruby (~> 1.0)
|
|
@@ -79,69 +90,66 @@ GEM
|
|
|
79
90
|
dry-inflector (~> 1.0)
|
|
80
91
|
dry-logic (~> 1.4)
|
|
81
92
|
zeitwerk (~> 2.6)
|
|
82
|
-
edtf (3.
|
|
93
|
+
edtf (3.3.0)
|
|
83
94
|
activesupport (>= 3.0, < 9.0)
|
|
84
95
|
equivalent-xml (0.6.0)
|
|
85
96
|
nokogiri (>= 1.4.3)
|
|
86
|
-
faraday (2.14.
|
|
97
|
+
faraday (2.14.3)
|
|
87
98
|
faraday-net_http (>= 2.0, < 3.5)
|
|
88
99
|
json
|
|
89
100
|
logger
|
|
90
|
-
faraday-net_http (3.4.
|
|
101
|
+
faraday-net_http (3.4.4)
|
|
91
102
|
net-http (~> 0.5)
|
|
92
103
|
faraday-retry (2.4.0)
|
|
93
104
|
faraday (~> 2.0)
|
|
94
|
-
|
|
105
|
+
geo_coord (0.2.0)
|
|
95
106
|
hashdiff (1.2.1)
|
|
96
107
|
hashie (5.1.0)
|
|
97
108
|
logger
|
|
98
|
-
i18n (1.
|
|
109
|
+
i18n (1.15.2)
|
|
99
110
|
concurrent-ruby (~> 1.0)
|
|
100
111
|
ice_nine (0.11.2)
|
|
101
|
-
io-console (0.
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
112
|
+
io-console (0.9.2)
|
|
113
|
+
iso8601 (0.13.0)
|
|
114
|
+
janeway-jsonpath (1.1.0)
|
|
115
|
+
json (2.21.2)
|
|
116
|
+
jsonschema_rs (0.49.9-arm64-darwin)
|
|
105
117
|
bigdecimal (>= 3.1, < 5)
|
|
106
|
-
|
|
107
|
-
bigdecimal
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
jsonpath (1.1.5)
|
|
112
|
-
multi_json
|
|
113
|
-
jwt (3.1.2)
|
|
118
|
+
jsonschema_rs (0.49.9-x86_64-darwin)
|
|
119
|
+
bigdecimal (>= 3.1, < 5)
|
|
120
|
+
jsonschema_rs (0.49.9-x86_64-linux)
|
|
121
|
+
bigdecimal (>= 3.1, < 5)
|
|
122
|
+
jwt (3.2.0)
|
|
114
123
|
base64
|
|
115
|
-
language_server-protocol (3.17.0.
|
|
124
|
+
language_server-protocol (3.17.0.6)
|
|
116
125
|
lint_roller (1.1.0)
|
|
117
126
|
logger (1.7.0)
|
|
118
|
-
|
|
119
|
-
json-schema (>= 4.1)
|
|
120
|
-
minitest (6.0.2)
|
|
127
|
+
minitest (6.0.6)
|
|
121
128
|
drb (~> 2.0)
|
|
122
129
|
prism (~> 1.5)
|
|
123
|
-
|
|
124
|
-
multi_xml (0.8.1)
|
|
130
|
+
multi_xml (0.9.1)
|
|
125
131
|
bigdecimal (>= 3.1, < 5)
|
|
126
132
|
net-http (0.9.1)
|
|
127
133
|
uri (>= 0.11.1)
|
|
128
|
-
nokogiri (1.19.
|
|
134
|
+
nokogiri (1.19.4-arm64-darwin)
|
|
129
135
|
racc (~> 1.4)
|
|
130
|
-
nokogiri (1.19.
|
|
136
|
+
nokogiri (1.19.4-x86_64-darwin)
|
|
131
137
|
racc (~> 1.4)
|
|
132
|
-
nokogiri (1.19.
|
|
138
|
+
nokogiri (1.19.4-x86_64-linux-gnu)
|
|
133
139
|
racc (~> 1.4)
|
|
134
|
-
oauth2 (2.0.
|
|
140
|
+
oauth2 (2.0.25)
|
|
141
|
+
anonymous_loader (~> 0.1, >= 0.1.3)
|
|
142
|
+
auth-sanitizer (~> 0.2, >= 0.2.3)
|
|
135
143
|
faraday (>= 0.17.3, < 4.0)
|
|
136
144
|
jwt (>= 1.0, < 4.0)
|
|
137
145
|
logger (~> 1.2)
|
|
138
146
|
multi_xml (~> 0.5)
|
|
139
147
|
rack (>= 1.2, < 4)
|
|
140
|
-
snaky_hash (~> 2.0, >= 2.0.
|
|
141
|
-
version_gem (~> 1.1, >= 1.1.
|
|
148
|
+
snaky_hash (~> 2.0, >= 2.0.7)
|
|
149
|
+
version_gem (~> 1.1, >= 1.1.14)
|
|
142
150
|
optimist (3.2.1)
|
|
143
|
-
parallel (1.
|
|
144
|
-
parser (3.3.
|
|
151
|
+
parallel (2.1.0)
|
|
152
|
+
parser (3.3.12.0)
|
|
145
153
|
ast (~> 2.4.1)
|
|
146
154
|
racc
|
|
147
155
|
patience_diff (1.2.0)
|
|
@@ -149,11 +157,11 @@ GEM
|
|
|
149
157
|
prism (1.9.0)
|
|
150
158
|
public_suffix (7.0.5)
|
|
151
159
|
racc (1.8.1)
|
|
152
|
-
rack (3.2.
|
|
160
|
+
rack (3.2.7)
|
|
153
161
|
rainbow (3.1.1)
|
|
154
|
-
rake (13.
|
|
155
|
-
regexp_parser (2.
|
|
156
|
-
reline (0.
|
|
162
|
+
rake (13.4.2)
|
|
163
|
+
regexp_parser (2.12.0)
|
|
164
|
+
reline (0.7.0)
|
|
157
165
|
io-console (~> 0.5)
|
|
158
166
|
rexml (3.4.4)
|
|
159
167
|
rspec (3.13.2)
|
|
@@ -169,54 +177,48 @@ GEM
|
|
|
169
177
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
170
178
|
rspec-support (~> 3.13.0)
|
|
171
179
|
rspec-support (3.13.7)
|
|
172
|
-
rubocop (1.
|
|
180
|
+
rubocop (1.89.0)
|
|
173
181
|
json (~> 2.3)
|
|
174
182
|
language_server-protocol (~> 3.17.0.2)
|
|
175
183
|
lint_roller (~> 1.1.0)
|
|
176
|
-
|
|
177
|
-
parallel (~> 1.10)
|
|
184
|
+
parallel (>= 1.10)
|
|
178
185
|
parser (>= 3.3.0.2)
|
|
179
186
|
rainbow (>= 2.2.2, < 4.0)
|
|
180
187
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
181
188
|
rubocop-ast (>= 1.49.0, < 2.0)
|
|
182
189
|
ruby-progressbar (~> 1.7)
|
|
183
190
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
184
|
-
rubocop-ast (1.
|
|
191
|
+
rubocop-ast (1.50.0)
|
|
185
192
|
parser (>= 3.3.7.2)
|
|
186
193
|
prism (~> 1.7)
|
|
187
|
-
rubocop-capybara (
|
|
194
|
+
rubocop-capybara (3.0.0)
|
|
188
195
|
lint_roller (~> 1.1)
|
|
189
|
-
rubocop (~> 1.
|
|
196
|
+
rubocop (~> 1.81)
|
|
190
197
|
rubocop-factory_bot (2.28.0)
|
|
191
198
|
lint_roller (~> 1.1)
|
|
192
199
|
rubocop (~> 1.72, >= 1.72.1)
|
|
193
|
-
rubocop-performance (1.
|
|
200
|
+
rubocop-performance (1.27.0)
|
|
194
201
|
lint_roller (~> 1.1)
|
|
195
|
-
rubocop (>= 1.
|
|
202
|
+
rubocop (>= 1.89.0, < 2.0)
|
|
196
203
|
rubocop-ast (>= 1.47.1, < 2.0)
|
|
197
|
-
rubocop-rspec (3.
|
|
204
|
+
rubocop-rspec (3.10.2)
|
|
198
205
|
lint_roller (~> 1.1)
|
|
199
|
-
|
|
206
|
+
regexp_parser (>= 2.0)
|
|
207
|
+
rubocop (~> 1.86, >= 1.86.2)
|
|
200
208
|
rubocop-rspec_rails (2.32.0)
|
|
201
209
|
lint_roller (~> 1.1)
|
|
202
210
|
rubocop (~> 1.72, >= 1.72.1)
|
|
203
211
|
rubocop-rspec (~> 3.5)
|
|
204
212
|
ruby-progressbar (1.13.0)
|
|
205
213
|
securerandom (0.4.1)
|
|
206
|
-
simplecov (
|
|
207
|
-
|
|
208
|
-
simplecov-html (~> 0.11)
|
|
209
|
-
simplecov_json_formatter (~> 0.1)
|
|
210
|
-
simplecov-html (0.13.2)
|
|
211
|
-
simplecov_json_formatter (0.1.4)
|
|
212
|
-
simpleidn (0.2.3)
|
|
213
|
-
snaky_hash (2.0.3)
|
|
214
|
+
simplecov (1.1.1)
|
|
215
|
+
snaky_hash (2.0.7)
|
|
214
216
|
hashie (>= 0.1.0, < 6)
|
|
215
|
-
version_gem (
|
|
216
|
-
super_diff (0.
|
|
217
|
-
attr_extras (>= 6.2.4)
|
|
218
|
-
diff-lcs
|
|
219
|
-
patience_diff
|
|
217
|
+
version_gem (~> 1.1, >= 1.1.14)
|
|
218
|
+
super_diff (0.19.0)
|
|
219
|
+
attr_extras (>= 6.2.4, < 8)
|
|
220
|
+
diff-lcs (~> 1.5)
|
|
221
|
+
patience_diff (~> 1.2)
|
|
220
222
|
thor (1.5.0)
|
|
221
223
|
tzinfo (2.0.6)
|
|
222
224
|
concurrent-ruby (~> 1.0)
|
|
@@ -225,16 +227,17 @@ GEM
|
|
|
225
227
|
unicode-emoji (4.2.0)
|
|
226
228
|
uri (1.1.1)
|
|
227
229
|
vcr (6.4.0)
|
|
228
|
-
version_gem (1.1.
|
|
230
|
+
version_gem (1.1.15)
|
|
229
231
|
webmock (3.26.2)
|
|
230
232
|
addressable (>= 2.8.0)
|
|
231
233
|
crack (>= 0.3.2)
|
|
232
234
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
233
|
-
zeitwerk (2.
|
|
235
|
+
zeitwerk (2.8.3)
|
|
234
236
|
|
|
235
237
|
PLATFORMS
|
|
236
238
|
arm64-darwin-23
|
|
237
239
|
arm64-darwin-24
|
|
240
|
+
arm64-darwin-25
|
|
238
241
|
x86_64-darwin-19
|
|
239
242
|
x86_64-darwin-22
|
|
240
243
|
x86_64-linux
|
|
@@ -255,4 +258,4 @@ DEPENDENCIES
|
|
|
255
258
|
webmock
|
|
256
259
|
|
|
257
260
|
BUNDLED WITH
|
|
258
|
-
4.0.
|
|
261
|
+
4.0.18
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sul_orcid_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Mangiafico
|
|
@@ -290,7 +290,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
290
290
|
- !ruby/object:Gem::Version
|
|
291
291
|
version: '0'
|
|
292
292
|
requirements: []
|
|
293
|
-
rubygems_version:
|
|
293
|
+
rubygems_version: 3.6.9
|
|
294
294
|
specification_version: 4
|
|
295
295
|
summary: Interface for interacting with the ORCID API.
|
|
296
296
|
test_files: []
|