dor-services-client 15.4.0 → 15.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af025cd4df3276cc4c2e5793794861a55332ba2d9e8d9c69e9168df4901038c1
4
- data.tar.gz: e7e7d2778580bf7641010cadf17c37faf85f6067c5606b52b9f39e25e0860ba5
3
+ metadata.gz: a72f9f6939e5e98c24f42489d68c855c7d3ff0bf31ed4d2c6ce25868096bcfcf
4
+ data.tar.gz: d52a33c7a68d180bbdf229798b2df6f21cc6b482efbefe4e3aced222ba9a09ad
5
5
  SHA512:
6
- metadata.gz: 92b865de43d42a4d2fab0bfb5749d477f90514f6cf6a2ef7b3678ae7c339ba620f3de2ef4f3fdc9f95cb2abb4edfc4bf0be1023a70066bfa86a0d0980fed76f0
7
- data.tar.gz: bcedec265771008b92a3f59d34e11820871dad15419924d9fce4a2d1786f9e826bc262a5a6fb13ff3c88332a0c03d2241102efd81b226186d0add9c61a1c6bde
6
+ metadata.gz: fcef16dbf8c050762fa79af9cef3c9a569d7bee2715b207d52d183f823ce6234d91837b972f5cd248c3e0b4035866250700940b0e5d0bfed5b7d25829d8c8992
7
+ data.tar.gz: 21b54bd3ccb537886a599b3d65ace558eb4af9e32d9f3d5b6ff73e8067829d94b8df0be5c650ae2d76e64f5e403d5463115bfb2ef0c51e94139fd376f1939e76
data/.circleci/config.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  version: 2.1
2
2
  orbs:
3
- ruby-rails: sul-dlss/ruby-rails@4.5.0
3
+ ruby-rails: sul-dlss/ruby-rails@4.6.0
4
4
  workflows:
5
5
  build:
6
6
  jobs:
@@ -9,4 +9,3 @@ workflows:
9
9
  - ruby-rails/test-gem:
10
10
  name: test
11
11
  context: dlss
12
- use-codecov: true
data/.rubocop.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  inherit_from: .rubocop_todo.yml
2
2
 
3
- require:
3
+ plugins:
4
4
  - rubocop-rspec
5
5
 
6
6
  AllCops:
@@ -133,11 +133,6 @@ RSpec/IdenticalEqualityAssertion: # new in 2.4
133
133
  Enabled: true
134
134
  RSpec/SubjectDeclaration: # new in 2.5
135
135
  Enabled: true
136
- FactoryBot/SyntaxMethods: # new in 2.7
137
- Enabled: true
138
- RSpecRails/AvoidSetupHook: # new in 2.4
139
- Enabled: true
140
-
141
136
  Lint/RefinementImportMethods: # new in 1.27
142
137
  Enabled: true
143
138
  Security/CompoundHash: # new in 1.28
@@ -177,18 +172,10 @@ Style/MapCompactWithConditionalBlock: # new in 1.30
177
172
  Enabled: true
178
173
  RSpec/ChangeByZero: # new in 2.11.0
179
174
  Enabled: true
180
- Capybara/SpecificMatcher: # new in 2.12
181
- Enabled: false
182
- RSpecRails/HaveHttpStatus: # new in 2.12
183
- Enabled: false
184
-
185
175
  RSpec/ClassCheck: # new in 2.13
186
176
  Enabled: true
187
177
  RSpec/NoExpectationExample: # new in 2.13
188
178
  Enabled: true
189
- Capybara/SpecificFinders: # new in 2.13
190
- Enabled: true
191
-
192
179
  Gemspec/DevelopmentDependencies: # new in 1.44
193
180
  Enabled: false
194
181
  Lint/DuplicateMagicComment: # new in 1.37
@@ -237,22 +224,6 @@ Style/RedundantRegexpConstructor: # new in 1.52
237
224
  Enabled: true
238
225
  Style/RedundantStringEscape: # new in 1.37
239
226
  Enabled: true
240
- Capybara/MatchStyle: # new in 2.17
241
- Enabled: true
242
- Capybara/NegationMatcher: # new in 2.14
243
- Enabled: true
244
- Capybara/SpecificActions: # new in 2.14
245
- Enabled: true
246
- FactoryBot/AssociationStyle: # new in 2.23
247
- Enabled: true
248
- FactoryBot/ConsistentParenthesesStyle: # new in 2.14
249
- Enabled: true
250
- FactoryBot/FactoryAssociationWithStrategy: # new in 2.23
251
- Enabled: true
252
- FactoryBot/FactoryNameStyle: # new in 2.16
253
- Enabled: true
254
- FactoryBot/RedundantFactoryOption: # new in 2.23
255
- Enabled: true
256
227
  RSpec/BeEmpty: # new in 2.20
257
228
  Enabled: true
258
229
  RSpec/ContainExactly: # new in 2.19
@@ -271,13 +242,6 @@ RSpec/SkipBlockInsideExample: # new in 2.19
271
242
  Enabled: true
272
243
  RSpec/SortMetadata: # new in 2.14
273
244
  Enabled: true
274
- RSpecRails/InferredSpecType: # new in 2.14
275
- Enabled: true
276
- RSpecRails/MinitestAssertions: # new in 2.17
277
- Enabled: true
278
- RSpecRails/TravelAround: # new in 2.19
279
- Enabled: true
280
-
281
245
  Lint/MixedCaseRange: # new in 1.53
282
246
  Enabled: true
283
247
  Lint/RedundantRegexpQuantifiers: # new in 1.53
@@ -292,9 +256,6 @@ Style/YAMLFileRead: # new in 1.53
292
256
  Enabled: true
293
257
  RSpec/ReceiveMessages: # new in 2.23
294
258
  Enabled: true
295
- RSpecRails/NegationBeValid: # new in 2.23
296
- Enabled: true
297
-
298
259
  Gemspec/AddRuntimeDependency: # new in 1.65
299
260
  Enabled: true
300
261
  Lint/DuplicateSetElement: # new in 1.67
@@ -317,18 +278,6 @@ Style/SuperArguments: # new in 1.64
317
278
  Enabled: true
318
279
  Style/SuperWithArgsParentheses: # new in 1.58
319
280
  Enabled: true
320
- Capybara/ClickLinkOrButtonStyle: # new in 2.19
321
- Enabled: true
322
- Capybara/RedundantWithinFind: # new in 2.20
323
- Enabled: true
324
- Capybara/RSpec/HaveSelector: # new in 2.19
325
- Enabled: true
326
- Capybara/RSpec/PredicateMatcher: # new in 2.19
327
- Enabled: true
328
- FactoryBot/ExcessiveCreateList: # new in 2.25
329
- Enabled: true
330
- FactoryBot/IdSequence: # new in 2.24
331
- Enabled: true
332
281
  RSpec/EmptyMetadata: # new in 2.24
333
282
  Enabled: true
334
283
  RSpec/EmptyOutput: # new in 2.29
@@ -352,4 +301,48 @@ RSpec/SpecFilePathFormat: # new in 2.24
352
301
  RSpec/SpecFilePathSuffix: # new in 2.24
353
302
  Enabled: true
354
303
  RSpec/UndescriptiveLiteralsDescription: # new in 2.29
355
- Enabled: true
304
+ Enabled: true
305
+ Lint/ArrayLiteralInRegexp: # new in 1.71
306
+ Enabled: true
307
+ Lint/ConstantReassignment: # new in 1.70
308
+ Enabled: true
309
+ Lint/CopDirectiveSyntax: # new in 1.72
310
+ Enabled: true
311
+ Lint/HashNewWithKeywordArgumentsAsDefault: # new in 1.69
312
+ Enabled: true
313
+ Lint/NumericOperationWithConstantResult: # new in 1.69
314
+ Enabled: true
315
+ Lint/RedundantTypeConversion: # new in 1.72
316
+ Enabled: true
317
+ Lint/SharedMutableDefault: # new in 1.70
318
+ Enabled: true
319
+ Lint/SuppressedExceptionInNumberConversion: # new in 1.72
320
+ Enabled: true
321
+ Lint/UnescapedBracketInRegexp: # new in 1.68
322
+ Enabled: true
323
+ Lint/UselessConstantScoping: # new in 1.72
324
+ Enabled: true
325
+ Lint/UselessDefined: # new in 1.69
326
+ Enabled: true
327
+ Style/AmbiguousEndlessMethodDefinition: # new in 1.68
328
+ Enabled: true
329
+ Style/BitwisePredicate: # new in 1.68
330
+ Enabled: true
331
+ Style/CombinableDefined: # new in 1.68
332
+ Enabled: true
333
+ Style/DigChain: # new in 1.69
334
+ Enabled: true
335
+ Style/FileNull: # new in 1.69
336
+ Enabled: true
337
+ Style/FileTouch: # new in 1.69
338
+ Enabled: true
339
+ Style/HashSlice: # new in 1.71
340
+ Enabled: true
341
+ Style/ItAssignment: # new in 1.70
342
+ Enabled: true
343
+ Style/KeywordArgumentsMerging: # new in 1.68
344
+ Enabled: true
345
+ Style/RedundantFormat: # new in 1.72
346
+ Enabled: true
347
+ Style/SafeNavigationChainLength: # new in 1.68
348
+ Enabled: true
data/.rubocop_todo.yml CHANGED
@@ -1,22 +1,22 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config --auto-gen-only-exclude`
3
- # on 2023-06-20 05:36:17 UTC using RuboCop version 1.52.1.
3
+ # on 2025-03-10 18:20:28 UTC using RuboCop version 1.73.2.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 1
10
- # Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
11
- Metrics/AbcSize:
12
- Exclude:
13
- - 'lib/dor/services/client/marcxml.rb'
9
+ # Offense count: 56
10
+ # This cop supports safe autocorrection (--autocorrect).
11
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
12
+ # URISchemes: http, https
13
+ Layout/LineLength:
14
+ Max: 174
14
15
 
15
16
  # Offense count: 1
16
- # Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns.
17
- Metrics/MethodLength:
17
+ Lint/UselessConstantScoping:
18
18
  Exclude:
19
- - 'lib/dor/services/client/transfer.rb'
19
+ - 'lib/dor/services/client/object.rb'
20
20
 
21
21
  # Offense count: 3
22
22
  RSpec/AnyInstance:
@@ -24,18 +24,12 @@ RSpec/AnyInstance:
24
24
  - 'spec/dor/services/client/async_result_spec.rb'
25
25
  - 'spec/dor/services/client/object_version_spec.rb'
26
26
 
27
- # Offense count: 6
27
+ # Offense count: 5
28
28
  RSpec/IdenticalEqualityAssertion:
29
29
  Exclude:
30
30
  - 'spec/dor/services/client_spec.rb'
31
31
 
32
- # Offense count: 1
33
- # This cop supports safe autocorrection (--autocorrect).
34
- RSpec/MultipleSubjects:
35
- Exclude:
36
- - 'spec/dor/services/client/object_spec.rb'
37
-
38
- # Offense count: 9
32
+ # Offense count: 10
39
33
  # Configuration parameters: Max, AllowedGroups.
40
34
  RSpec/NestedGroups:
41
35
  Exclude:
@@ -44,18 +38,13 @@ RSpec/NestedGroups:
44
38
  - 'spec/dor/services/client/objects_spec.rb'
45
39
  - 'spec/dor/services/client_spec.rb'
46
40
 
47
- # Offense count: 4
48
- RSpec/RepeatedDescription:
49
- Exclude:
50
- - 'spec/dor/services/client/object_spec.rb'
51
-
52
41
  # Offense count: 3
53
42
  # Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
54
43
  RSpec/VerifiedDoubles:
55
44
  Exclude:
56
45
  - 'spec/dor/services/client/response_error_formatter_spec.rb'
57
46
 
58
- # Offense count: 1
47
+ # Offense count: 2
59
48
  # Configuration parameters: AllowedConstants.
60
49
  Style/Documentation:
61
50
  Exclude:
@@ -63,9 +52,15 @@ Style/Documentation:
63
52
  - 'test/**/*'
64
53
  - 'lib/dor/services/client.rb'
65
54
 
66
- # Offense count: 47
55
+ # Offense count: 2
67
56
  # This cop supports safe autocorrection (--autocorrect).
68
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
69
- # URISchemes: http, https
70
- Layout/LineLength:
71
- Max: 164
57
+ Style/IfUnlessModifier:
58
+ Exclude:
59
+ - 'lib/dor/services/client.rb'
60
+ - 'lib/dor/services/client/object.rb'
61
+
62
+ # Offense count: 1
63
+ # This cop supports safe autocorrection (--autocorrect).
64
+ Style/KeywordArgumentsMerging:
65
+ Exclude:
66
+ - 'lib/dor/services/client/object.rb'
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dor-services-client (15.4.0)
4
+ dor-services-client (15.6.0)
5
5
  activesupport (>= 7.0.0)
6
- cocina-models (~> 0.99.0)
6
+ cocina-models (~> 0.101.0)
7
7
  deprecation
8
8
  faraday (~> 2.0)
9
9
  faraday-retry
@@ -12,7 +12,7 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- activesupport (8.0.1)
15
+ activesupport (8.0.2)
16
16
  base64
17
17
  benchmark (>= 0.3)
18
18
  bigdecimal
@@ -27,13 +27,13 @@ GEM
27
27
  uri (>= 0.13.1)
28
28
  addressable (2.8.7)
29
29
  public_suffix (>= 2.0.2, < 7.0)
30
- ast (2.4.2)
30
+ ast (2.4.3)
31
31
  attr_extras (7.1.0)
32
32
  base64 (0.2.0)
33
33
  benchmark (0.4.0)
34
34
  bigdecimal (3.1.9)
35
- byebug (11.1.3)
36
- cocina-models (0.99.4)
35
+ byebug (12.0.0)
36
+ cocina-models (0.101.0)
37
37
  activesupport
38
38
  deprecation
39
39
  dry-struct (~> 1.0)
@@ -54,7 +54,7 @@ GEM
54
54
  rexml
55
55
  deprecation (1.1.0)
56
56
  activesupport
57
- diff-lcs (1.5.1)
57
+ diff-lcs (1.6.1)
58
58
  docile (1.4.1)
59
59
  drb (2.2.1)
60
60
  dry-core (1.1.0)
@@ -67,7 +67,7 @@ GEM
67
67
  concurrent-ruby (~> 1.0)
68
68
  dry-core (~> 1.1)
69
69
  zeitwerk (~> 2.6)
70
- dry-struct (1.7.1)
70
+ dry-struct (1.8.0)
71
71
  dry-core (~> 1.1)
72
72
  dry-types (~> 1.8, >= 1.8.2)
73
73
  ice_nine (~> 0.11)
@@ -83,47 +83,49 @@ GEM
83
83
  activesupport (>= 3.0, < 9.0)
84
84
  equivalent-xml (0.6.0)
85
85
  nokogiri (>= 1.4.3)
86
- faraday (2.12.2)
86
+ faraday (2.13.0)
87
87
  faraday-net_http (>= 2.0, < 3.5)
88
88
  json
89
89
  logger
90
90
  faraday-net_http (3.4.0)
91
91
  net-http (>= 0.5.0)
92
- faraday-retry (2.2.1)
92
+ faraday-retry (2.3.1)
93
93
  faraday (~> 2.0)
94
94
  hashdiff (1.1.2)
95
95
  i18n (1.14.7)
96
96
  concurrent-ruby (~> 1.0)
97
97
  ice_nine (0.11.2)
98
- json (2.9.1)
98
+ json (2.10.2)
99
99
  jsonpath (1.1.5)
100
100
  multi_json
101
101
  language_server-protocol (3.17.0.4)
102
- logger (1.6.5)
103
- minitest (5.25.4)
102
+ lint_roller (1.1.0)
103
+ logger (1.7.0)
104
+ minitest (5.25.5)
104
105
  multi_json (1.15.0)
105
106
  net-http (0.6.0)
106
107
  uri
107
- nokogiri (1.18.2-arm64-darwin)
108
+ nokogiri (1.18.7-arm64-darwin)
108
109
  racc (~> 1.4)
109
- nokogiri (1.18.2-x86_64-darwin)
110
+ nokogiri (1.18.7-x86_64-darwin)
110
111
  racc (~> 1.4)
111
- nokogiri (1.18.2-x86_64-linux-gnu)
112
+ nokogiri (1.18.7-x86_64-linux-gnu)
112
113
  racc (~> 1.4)
113
114
  openapi_parser (1.0.0)
114
- optimist (3.2.0)
115
+ optimist (3.2.1)
115
116
  parallel (1.26.3)
116
- parser (3.3.7.1)
117
+ parser (3.3.8.0)
117
118
  ast (~> 2.4.1)
118
119
  racc
119
120
  patience_diff (1.2.0)
120
121
  optimist (~> 3.0)
122
+ prism (1.4.0)
121
123
  public_suffix (6.0.1)
122
124
  racc (1.8.1)
123
125
  rainbow (3.1.1)
124
126
  rake (13.2.1)
125
127
  regexp_parser (2.10.0)
126
- rexml (3.4.0)
128
+ rexml (3.4.1)
127
129
  rspec (3.13.0)
128
130
  rspec-core (~> 3.13.0)
129
131
  rspec-expectations (~> 3.13.0)
@@ -137,29 +139,23 @@ GEM
137
139
  diff-lcs (>= 1.2.0, < 2.0)
138
140
  rspec-support (~> 3.13.0)
139
141
  rspec-support (3.13.2)
140
- rubocop (1.71.2)
142
+ rubocop (1.75.2)
141
143
  json (~> 2.3)
142
- language_server-protocol (>= 3.17.0)
144
+ language_server-protocol (~> 3.17.0.2)
145
+ lint_roller (~> 1.1.0)
143
146
  parallel (~> 1.10)
144
147
  parser (>= 3.3.0.2)
145
148
  rainbow (>= 2.2.2, < 4.0)
146
149
  regexp_parser (>= 2.9.3, < 3.0)
147
- rubocop-ast (>= 1.38.0, < 2.0)
150
+ rubocop-ast (>= 1.44.0, < 2.0)
148
151
  ruby-progressbar (~> 1.7)
149
152
  unicode-display_width (>= 2.4.0, < 4.0)
150
- rubocop-ast (1.38.0)
151
- parser (>= 3.3.1.0)
152
- rubocop-capybara (2.21.0)
153
- rubocop (~> 1.41)
154
- rubocop-factory_bot (2.26.1)
155
- rubocop (~> 1.61)
156
- rubocop-rspec (2.31.0)
157
- rubocop (~> 1.40)
158
- rubocop-capybara (~> 2.17)
159
- rubocop-factory_bot (~> 2.22)
160
- rubocop-rspec_rails (~> 2.28)
161
- rubocop-rspec_rails (2.29.1)
162
- rubocop (~> 1.61)
153
+ rubocop-ast (1.44.1)
154
+ parser (>= 3.3.7.2)
155
+ prism (~> 1.4)
156
+ rubocop-rspec (3.5.0)
157
+ lint_roller (~> 1.1)
158
+ rubocop (~> 1.72, >= 1.72.1)
163
159
  ruby-progressbar (1.13.0)
164
160
  securerandom (0.4.1)
165
161
  simplecov (0.22.0)
@@ -178,12 +174,12 @@ GEM
178
174
  unicode-display_width (3.1.4)
179
175
  unicode-emoji (~> 4.0, >= 4.0.4)
180
176
  unicode-emoji (4.0.4)
181
- uri (1.0.2)
182
- webmock (3.25.0)
177
+ uri (1.0.3)
178
+ webmock (3.25.1)
183
179
  addressable (>= 2.8.0)
184
180
  crack (>= 0.3.2)
185
181
  hashdiff (>= 0.4.0, < 2.0.0)
186
- zeitwerk (2.7.1)
182
+ zeitwerk (2.7.2)
187
183
 
188
184
  PLATFORMS
189
185
  arm64-darwin-23
@@ -201,9 +197,9 @@ DEPENDENCIES
201
197
  rake (>= 12.3.3)
202
198
  rspec (~> 3.0)
203
199
  rubocop (~> 1.0)
204
- rubocop-rspec (~> 2.1)
200
+ rubocop-rspec
205
201
  simplecov
206
202
  webmock
207
203
 
208
204
  BUNDLED WITH
209
- 2.4.13
205
+ 2.6.8
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.required_ruby_version = '>= 3.0', '< 4'
26
26
 
27
27
  spec.add_dependency 'activesupport', '>= 7.0.0'
28
- spec.add_dependency 'cocina-models', '~> 0.99.0'
28
+ spec.add_dependency 'cocina-models', '~> 0.101.0'
29
29
  spec.add_dependency 'deprecation', '>= 0'
30
30
  spec.add_dependency 'faraday', '~> 2.0'
31
31
  spec.add_dependency 'faraday-retry'
@@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
36
36
  spec.add_development_dependency 'rake', '>= 12.3.3'
37
37
  spec.add_development_dependency 'rspec', '~> 3.0'
38
38
  spec.add_development_dependency 'rubocop', '~> 1.0'
39
- spec.add_development_dependency 'rubocop-rspec', '~> 2.1'
39
+ spec.add_development_dependency 'rubocop-rspec'
40
40
  spec.add_development_dependency 'simplecov'
41
41
  spec.add_development_dependency 'webmock'
42
42
  spec.metadata['rubygems_mfa_required'] = 'true'
@@ -3,7 +3,7 @@
3
3
  module Dor
4
4
  module Services
5
5
  class Client
6
- VERSION = '15.4.0'
6
+ VERSION = '15.6.0'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dor-services-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.4.0
4
+ version: 15.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Coyne
8
8
  - Michael Giarlo
9
- autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2025-02-13 00:00:00.000000000 Z
11
+ date: 2025-04-15 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: activesupport
@@ -31,14 +30,14 @@ dependencies:
31
30
  requirements:
32
31
  - - "~>"
33
32
  - !ruby/object:Gem::Version
34
- version: 0.99.0
33
+ version: 0.101.0
35
34
  type: :runtime
36
35
  prerelease: false
37
36
  version_requirements: !ruby/object:Gem::Requirement
38
37
  requirements:
39
38
  - - "~>"
40
39
  - !ruby/object:Gem::Version
41
- version: 0.99.0
40
+ version: 0.101.0
42
41
  - !ruby/object:Gem::Dependency
43
42
  name: deprecation
44
43
  requirement: !ruby/object:Gem::Requirement
@@ -169,16 +168,16 @@ dependencies:
169
168
  name: rubocop-rspec
170
169
  requirement: !ruby/object:Gem::Requirement
171
170
  requirements:
172
- - - "~>"
171
+ - - ">="
173
172
  - !ruby/object:Gem::Version
174
- version: '2.1'
173
+ version: '0'
175
174
  type: :development
176
175
  prerelease: false
177
176
  version_requirements: !ruby/object:Gem::Requirement
178
177
  requirements:
179
- - - "~>"
178
+ - - ">="
180
179
  - !ruby/object:Gem::Version
181
- version: '2.1'
180
+ version: '0'
182
181
  - !ruby/object:Gem::Dependency
183
182
  name: simplecov
184
183
  requirement: !ruby/object:Gem::Requirement
@@ -207,7 +206,6 @@ dependencies:
207
206
  - - ">="
208
207
  - !ruby/object:Gem::Version
209
208
  version: '0'
210
- description:
211
209
  email:
212
210
  - jcoyne@justincoyne.com
213
211
  - leftwing@alumni.rutgers.edu
@@ -255,7 +253,6 @@ homepage: https://github.com/sul-dlss/dor-services-client
255
253
  licenses: []
256
254
  metadata:
257
255
  rubygems_mfa_required: 'true'
258
- post_install_message:
259
256
  rdoc_options: []
260
257
  require_paths:
261
258
  - lib
@@ -273,8 +270,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
273
270
  - !ruby/object:Gem::Version
274
271
  version: '0'
275
272
  requirements: []
276
- rubygems_version: 3.5.11
277
- signing_key:
273
+ rubygems_version: 3.6.2
278
274
  specification_version: 4
279
275
  summary: A client for dor-services-app
280
276
  test_files: []