increase 1.7.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9456cd7fc46c10e404d3ab987dd9d6252142d33c3ebaaf93a64f58a125819a9b
4
- data.tar.gz: 4a146b83996e24b882704b65bd530af807be56288b144e88f75d70b7f9159bd7
3
+ metadata.gz: eaaaaa94d14a56dfafb869c529f987f43cedcacb05b0dfefb3ab559a14e35b0d
4
+ data.tar.gz: e95c5ba892021f53b70cc1526853e3ac87c73b6108e79669b5080c7be725f51b
5
5
  SHA512:
6
- metadata.gz: 1d035f7c0c8576cd09116f80346b13a4a647bc1d6ddb46e6422dae3ad278b29932ec9e3d5a4e157a2530d407da0a60889c9013ff8c90d6c479f964cf73e2e2b1
7
- data.tar.gz: c11f6284502a6a7903e2c239292d6466b55febd0ff6a5b326329e763c1dcb21c71222ee8b15ec8f1eff7d58bef28c32259f3bf9f51173033aa6dfa840508cc8d
6
+ metadata.gz: '0509a5a3c271d2c424a150e3e60af0d47b45b885377058c8b2aef70ea59dd0080874b4b4450eec079ce5c329751970e14ebbbdd5762ab8a1a5ffe1dba6b8cbd4'
7
+ data.tar.gz: e08e6d08648bbe2c473a140c40b5fe59a6a1ef5a935f129db54192017917bf0f67981e3b7f821fe0e69ca60c34740ab3c3f889fc3d526a23dd53786d255981e5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.9.0 (2025-07-04)
4
+
5
+ Full Changelog: [v1.8.0...v1.9.0](https://github.com/Increase/increase-ruby/compare/v1.8.0...v1.9.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([39cfff5](https://github.com/Increase/increase-ruby/commit/39cfff5f5bbb36f2ac638c05b3259c3a76a9fe08))
10
+
11
+ ## 1.8.0 (2025-07-04)
12
+
13
+ Full Changelog: [v1.7.0...v1.8.0](https://github.com/Increase/increase-ruby/compare/v1.7.0...v1.8.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([ac9c398](https://github.com/Increase/increase-ruby/commit/ac9c3980decb85870a47773a347507176d40981e))
18
+
3
19
  ## 1.7.0 (2025-07-02)
4
20
 
5
21
  Full Changelog: [v1.6.0...v1.7.0](https://github.com/Increase/increase-ruby/compare/v1.6.0...v1.7.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.7.0"
18
+ gem "increase", "~> 1.9.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -126,6 +126,16 @@ module Increase
126
126
  # @return [Symbol, Increase::Models::PhysicalCard::Shipment::Method]
127
127
  required :method_, enum: -> { Increase::PhysicalCard::Shipment::Method }, api_name: :method
128
128
 
129
+ # @!attribute schedule
130
+ # When this physical card should be produced by the card printer. The default
131
+ # timeline is the day after the card printer receives the order, except for
132
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
133
+ # production methods, please reach out to
134
+ # [support@increase.com](mailto:support@increase.com).
135
+ #
136
+ # @return [Symbol, Increase::Models::PhysicalCard::Shipment::Schedule]
137
+ required :schedule, enum: -> { Increase::PhysicalCard::Shipment::Schedule }
138
+
129
139
  # @!attribute status
130
140
  # The status of this shipment.
131
141
  #
@@ -138,13 +148,18 @@ module Increase
138
148
  # @return [Increase::Models::PhysicalCard::Shipment::Tracking, nil]
139
149
  required :tracking, -> { Increase::PhysicalCard::Shipment::Tracking }, nil?: true
140
150
 
141
- # @!method initialize(address:, method_:, status:, tracking:)
151
+ # @!method initialize(address:, method_:, schedule:, status:, tracking:)
152
+ # Some parameter documentations has been truncated, see
153
+ # {Increase::Models::PhysicalCard::Shipment} for more details.
154
+ #
142
155
  # The details used to ship this physical card.
143
156
  #
144
157
  # @param address [Increase::Models::PhysicalCard::Shipment::Address] The location to where the card's packing label is addressed.
145
158
  #
146
159
  # @param method_ [Symbol, Increase::Models::PhysicalCard::Shipment::Method] The shipping method.
147
160
  #
161
+ # @param schedule [Symbol, Increase::Models::PhysicalCard::Shipment::Schedule] When this physical card should be produced by the card printer. The default time
162
+ #
148
163
  # @param status [Symbol, Increase::Models::PhysicalCard::Shipment::Status] The status of this shipment.
149
164
  #
150
165
  # @param tracking [Increase::Models::PhysicalCard::Shipment::Tracking, nil] Tracking details for the shipment.
@@ -230,6 +245,26 @@ module Increase
230
245
  # @return [Array<Symbol>]
231
246
  end
232
247
 
248
+ # When this physical card should be produced by the card printer. The default
249
+ # timeline is the day after the card printer receives the order, except for
250
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
251
+ # production methods, please reach out to
252
+ # [support@increase.com](mailto:support@increase.com).
253
+ #
254
+ # @see Increase::Models::PhysicalCard::Shipment#schedule
255
+ module Schedule
256
+ extend Increase::Internal::Type::Enum
257
+
258
+ # The physical card will be shipped one business day after the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Wednesday.
259
+ NEXT_DAY = :next_day
260
+
261
+ # The physical card will be shipped on the same business day that the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Tuesday.
262
+ SAME_DAY = :same_day
263
+
264
+ # @!method self.values
265
+ # @return [Array<Symbol>]
266
+ end
267
+
233
268
  # The status of this shipment.
234
269
  #
235
270
  # @see Increase::Models::PhysicalCard::Shipment#status
@@ -84,12 +84,27 @@ module Increase
84
84
  },
85
85
  api_name: :method
86
86
 
87
- # @!method initialize(address:, method_:)
87
+ # @!attribute schedule
88
+ # When this physical card should be produced by the card printer. The default
89
+ # timeline is the day after the card printer receives the order, except for
90
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
91
+ # production methods, please reach out to
92
+ # [support@increase.com](mailto:support@increase.com).
93
+ #
94
+ # @return [Symbol, Increase::Models::PhysicalCardCreateParams::Shipment::Schedule, nil]
95
+ optional :schedule, enum: -> { Increase::PhysicalCardCreateParams::Shipment::Schedule }
96
+
97
+ # @!method initialize(address:, method_:, schedule: nil)
98
+ # Some parameter documentations has been truncated, see
99
+ # {Increase::Models::PhysicalCardCreateParams::Shipment} for more details.
100
+ #
88
101
  # The details used to ship this physical card.
89
102
  #
90
103
  # @param address [Increase::Models::PhysicalCardCreateParams::Shipment::Address] The address to where the card should be shipped.
91
104
  #
92
105
  # @param method_ [Symbol, Increase::Models::PhysicalCardCreateParams::Shipment::Method] The shipping method to use.
106
+ #
107
+ # @param schedule [Symbol, Increase::Models::PhysicalCardCreateParams::Shipment::Schedule] When this physical card should be produced by the card printer. The default time
93
108
 
94
109
  # @see Increase::Models::PhysicalCardCreateParams::Shipment#address
95
110
  class Address < Increase::Internal::Type::BaseModel
@@ -179,6 +194,26 @@ module Increase
179
194
  # @!method self.values
180
195
  # @return [Array<Symbol>]
181
196
  end
197
+
198
+ # When this physical card should be produced by the card printer. The default
199
+ # timeline is the day after the card printer receives the order, except for
200
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
201
+ # production methods, please reach out to
202
+ # [support@increase.com](mailto:support@increase.com).
203
+ #
204
+ # @see Increase::Models::PhysicalCardCreateParams::Shipment#schedule
205
+ module Schedule
206
+ extend Increase::Internal::Type::Enum
207
+
208
+ # The physical card will be shipped one business day after the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Wednesday.
209
+ NEXT_DAY = :next_day
210
+
211
+ # The physical card will be shipped on the same business day that the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Tuesday.
212
+ SAME_DAY = :same_day
213
+
214
+ # @!method self.values
215
+ # @return [Array<Symbol>]
216
+ end
182
217
  end
183
218
  end
184
219
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.7.0"
4
+ VERSION = "1.9.0"
5
5
  end
@@ -175,6 +175,16 @@ module Increase
175
175
  sig { returns(Increase::PhysicalCard::Shipment::Method::TaggedSymbol) }
176
176
  attr_accessor :method_
177
177
 
178
+ # When this physical card should be produced by the card printer. The default
179
+ # timeline is the day after the card printer receives the order, except for
180
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
181
+ # production methods, please reach out to
182
+ # [support@increase.com](mailto:support@increase.com).
183
+ sig do
184
+ returns(Increase::PhysicalCard::Shipment::Schedule::TaggedSymbol)
185
+ end
186
+ attr_accessor :schedule
187
+
178
188
  # The status of this shipment.
179
189
  sig { returns(Increase::PhysicalCard::Shipment::Status::TaggedSymbol) }
180
190
  attr_accessor :status
@@ -196,6 +206,7 @@ module Increase
196
206
  params(
197
207
  address: Increase::PhysicalCard::Shipment::Address::OrHash,
198
208
  method_: Increase::PhysicalCard::Shipment::Method::OrSymbol,
209
+ schedule: Increase::PhysicalCard::Shipment::Schedule::OrSymbol,
199
210
  status: Increase::PhysicalCard::Shipment::Status::OrSymbol,
200
211
  tracking:
201
212
  T.nilable(Increase::PhysicalCard::Shipment::Tracking::OrHash)
@@ -206,6 +217,12 @@ module Increase
206
217
  address:,
207
218
  # The shipping method.
208
219
  method_:,
220
+ # When this physical card should be produced by the card printer. The default
221
+ # timeline is the day after the card printer receives the order, except for
222
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
223
+ # production methods, please reach out to
224
+ # [support@increase.com](mailto:support@increase.com).
225
+ schedule:,
209
226
  # The status of this shipment.
210
227
  status:,
211
228
  # Tracking details for the shipment.
@@ -218,6 +235,8 @@ module Increase
218
235
  {
219
236
  address: Increase::PhysicalCard::Shipment::Address,
220
237
  method_: Increase::PhysicalCard::Shipment::Method::TaggedSymbol,
238
+ schedule:
239
+ Increase::PhysicalCard::Shipment::Schedule::TaggedSymbol,
221
240
  status: Increase::PhysicalCard::Shipment::Status::TaggedSymbol,
222
241
  tracking: T.nilable(Increase::PhysicalCard::Shipment::Tracking)
223
242
  }
@@ -347,6 +366,43 @@ module Increase
347
366
  end
348
367
  end
349
368
 
369
+ # When this physical card should be produced by the card printer. The default
370
+ # timeline is the day after the card printer receives the order, except for
371
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
372
+ # production methods, please reach out to
373
+ # [support@increase.com](mailto:support@increase.com).
374
+ module Schedule
375
+ extend Increase::Internal::Type::Enum
376
+
377
+ TaggedSymbol =
378
+ T.type_alias do
379
+ T.all(Symbol, Increase::PhysicalCard::Shipment::Schedule)
380
+ end
381
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
382
+
383
+ # The physical card will be shipped one business day after the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Wednesday.
384
+ NEXT_DAY =
385
+ T.let(
386
+ :next_day,
387
+ Increase::PhysicalCard::Shipment::Schedule::TaggedSymbol
388
+ )
389
+
390
+ # The physical card will be shipped on the same business day that the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Tuesday.
391
+ SAME_DAY =
392
+ T.let(
393
+ :same_day,
394
+ Increase::PhysicalCard::Shipment::Schedule::TaggedSymbol
395
+ )
396
+
397
+ sig do
398
+ override.returns(
399
+ T::Array[Increase::PhysicalCard::Shipment::Schedule::TaggedSymbol]
400
+ )
401
+ end
402
+ def self.values
403
+ end
404
+ end
405
+
350
406
  # The status of this shipment.
351
407
  module Status
352
408
  extend Increase::Internal::Type::Enum
@@ -147,20 +147,50 @@ module Increase
147
147
  end
148
148
  attr_accessor :method_
149
149
 
150
+ # When this physical card should be produced by the card printer. The default
151
+ # timeline is the day after the card printer receives the order, except for
152
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
153
+ # production methods, please reach out to
154
+ # [support@increase.com](mailto:support@increase.com).
155
+ sig do
156
+ returns(
157
+ T.nilable(
158
+ Increase::PhysicalCardCreateParams::Shipment::Schedule::OrSymbol
159
+ )
160
+ )
161
+ end
162
+ attr_reader :schedule
163
+
164
+ sig do
165
+ params(
166
+ schedule:
167
+ Increase::PhysicalCardCreateParams::Shipment::Schedule::OrSymbol
168
+ ).void
169
+ end
170
+ attr_writer :schedule
171
+
150
172
  # The details used to ship this physical card.
151
173
  sig do
152
174
  params(
153
175
  address:
154
176
  Increase::PhysicalCardCreateParams::Shipment::Address::OrHash,
155
177
  method_:
156
- Increase::PhysicalCardCreateParams::Shipment::Method::OrSymbol
178
+ Increase::PhysicalCardCreateParams::Shipment::Method::OrSymbol,
179
+ schedule:
180
+ Increase::PhysicalCardCreateParams::Shipment::Schedule::OrSymbol
157
181
  ).returns(T.attached_class)
158
182
  end
159
183
  def self.new(
160
184
  # The address to where the card should be shipped.
161
185
  address:,
162
186
  # The shipping method to use.
163
- method_:
187
+ method_:,
188
+ # When this physical card should be produced by the card printer. The default
189
+ # timeline is the day after the card printer receives the order, except for
190
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
191
+ # production methods, please reach out to
192
+ # [support@increase.com](mailto:support@increase.com).
193
+ schedule: nil
164
194
  )
165
195
  end
166
196
 
@@ -169,7 +199,9 @@ module Increase
169
199
  {
170
200
  address: Increase::PhysicalCardCreateParams::Shipment::Address,
171
201
  method_:
172
- Increase::PhysicalCardCreateParams::Shipment::Method::OrSymbol
202
+ Increase::PhysicalCardCreateParams::Shipment::Method::OrSymbol,
203
+ schedule:
204
+ Increase::PhysicalCardCreateParams::Shipment::Schedule::OrSymbol
173
205
  }
174
206
  )
175
207
  end
@@ -321,6 +353,48 @@ module Increase
321
353
  def self.values
322
354
  end
323
355
  end
356
+
357
+ # When this physical card should be produced by the card printer. The default
358
+ # timeline is the day after the card printer receives the order, except for
359
+ # `FEDEX_PRIORITY_OVERNIGHT` cards, which default to `SAME_DAY`. To use faster
360
+ # production methods, please reach out to
361
+ # [support@increase.com](mailto:support@increase.com).
362
+ module Schedule
363
+ extend Increase::Internal::Type::Enum
364
+
365
+ TaggedSymbol =
366
+ T.type_alias do
367
+ T.all(
368
+ Symbol,
369
+ Increase::PhysicalCardCreateParams::Shipment::Schedule
370
+ )
371
+ end
372
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
373
+
374
+ # The physical card will be shipped one business day after the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Wednesday.
375
+ NEXT_DAY =
376
+ T.let(
377
+ :next_day,
378
+ Increase::PhysicalCardCreateParams::Shipment::Schedule::TaggedSymbol
379
+ )
380
+
381
+ # The physical card will be shipped on the same business day that the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Tuesday.
382
+ SAME_DAY =
383
+ T.let(
384
+ :same_day,
385
+ Increase::PhysicalCardCreateParams::Shipment::Schedule::TaggedSymbol
386
+ )
387
+
388
+ sig do
389
+ override.returns(
390
+ T::Array[
391
+ Increase::PhysicalCardCreateParams::Shipment::Schedule::TaggedSymbol
392
+ ]
393
+ )
394
+ end
395
+ def self.values
396
+ end
397
+ end
324
398
  end
325
399
  end
326
400
  end
@@ -72,6 +72,7 @@ module Increase
72
72
  {
73
73
  address: Increase::PhysicalCard::Shipment::Address,
74
74
  method_: Increase::Models::PhysicalCard::Shipment::method_,
75
+ schedule: Increase::Models::PhysicalCard::Shipment::schedule,
75
76
  status: Increase::Models::PhysicalCard::Shipment::status,
76
77
  tracking: Increase::PhysicalCard::Shipment::Tracking?
77
78
  }
@@ -81,6 +82,8 @@ module Increase
81
82
 
82
83
  attr_accessor method_: Increase::Models::PhysicalCard::Shipment::method_
83
84
 
85
+ attr_accessor schedule: Increase::Models::PhysicalCard::Shipment::schedule
86
+
84
87
  attr_accessor status: Increase::Models::PhysicalCard::Shipment::status
85
88
 
86
89
  attr_accessor tracking: Increase::PhysicalCard::Shipment::Tracking?
@@ -88,6 +91,7 @@ module Increase
88
91
  def initialize: (
89
92
  address: Increase::PhysicalCard::Shipment::Address,
90
93
  method_: Increase::Models::PhysicalCard::Shipment::method_,
94
+ schedule: Increase::Models::PhysicalCard::Shipment::schedule,
91
95
  status: Increase::Models::PhysicalCard::Shipment::status,
92
96
  tracking: Increase::PhysicalCard::Shipment::Tracking?
93
97
  ) -> void
@@ -95,6 +99,7 @@ module Increase
95
99
  def to_hash: -> {
96
100
  address: Increase::PhysicalCard::Shipment::Address,
97
101
  method_: Increase::Models::PhysicalCard::Shipment::method_,
102
+ schedule: Increase::Models::PhysicalCard::Shipment::schedule,
98
103
  status: Increase::Models::PhysicalCard::Shipment::status,
99
104
  tracking: Increase::PhysicalCard::Shipment::Tracking?
100
105
  }
@@ -163,6 +168,20 @@ module Increase
163
168
  def self?.values: -> ::Array[Increase::Models::PhysicalCard::Shipment::method_]
164
169
  end
165
170
 
171
+ type schedule = :next_day | :same_day
172
+
173
+ module Schedule
174
+ extend Increase::Internal::Type::Enum
175
+
176
+ # The physical card will be shipped one business day after the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Wednesday.
177
+ NEXT_DAY: :next_day
178
+
179
+ # The physical card will be shipped on the same business day that the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Tuesday.
180
+ SAME_DAY: :same_day
181
+
182
+ def self?.values: -> ::Array[Increase::Models::PhysicalCard::Shipment::schedule]
183
+ end
184
+
166
185
  type status =
167
186
  :pending
168
187
  | :canceled
@@ -54,7 +54,8 @@ module Increase
54
54
  type shipment =
55
55
  {
56
56
  address: Increase::PhysicalCardCreateParams::Shipment::Address,
57
- method_: Increase::Models::PhysicalCardCreateParams::Shipment::method_
57
+ method_: Increase::Models::PhysicalCardCreateParams::Shipment::method_,
58
+ schedule: Increase::Models::PhysicalCardCreateParams::Shipment::schedule
58
59
  }
59
60
 
60
61
  class Shipment < Increase::Internal::Type::BaseModel
@@ -62,14 +63,22 @@ module Increase
62
63
 
63
64
  attr_accessor method_: Increase::Models::PhysicalCardCreateParams::Shipment::method_
64
65
 
66
+ attr_reader schedule: Increase::Models::PhysicalCardCreateParams::Shipment::schedule?
67
+
68
+ def schedule=: (
69
+ Increase::Models::PhysicalCardCreateParams::Shipment::schedule
70
+ ) -> Increase::Models::PhysicalCardCreateParams::Shipment::schedule
71
+
65
72
  def initialize: (
66
73
  address: Increase::PhysicalCardCreateParams::Shipment::Address,
67
- method_: Increase::Models::PhysicalCardCreateParams::Shipment::method_
74
+ method_: Increase::Models::PhysicalCardCreateParams::Shipment::method_,
75
+ ?schedule: Increase::Models::PhysicalCardCreateParams::Shipment::schedule
68
76
  ) -> void
69
77
 
70
78
  def to_hash: -> {
71
79
  address: Increase::PhysicalCardCreateParams::Shipment::Address,
72
- method_: Increase::Models::PhysicalCardCreateParams::Shipment::method_
80
+ method_: Increase::Models::PhysicalCardCreateParams::Shipment::method_,
81
+ schedule: Increase::Models::PhysicalCardCreateParams::Shipment::schedule
73
82
  }
74
83
 
75
84
  type address =
@@ -146,6 +155,20 @@ module Increase
146
155
 
147
156
  def self?.values: -> ::Array[Increase::Models::PhysicalCardCreateParams::Shipment::method_]
148
157
  end
158
+
159
+ type schedule = :next_day | :same_day
160
+
161
+ module Schedule
162
+ extend Increase::Internal::Type::Enum
163
+
164
+ # The physical card will be shipped one business day after the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Wednesday.
165
+ NEXT_DAY: :next_day
166
+
167
+ # The physical card will be shipped on the same business day that the order is received by the card printer. A card that is submitted to Increase on a Monday evening (Pacific Time) will ship out on Tuesday.
168
+ SAME_DAY: :same_day
169
+
170
+ def self?.values: -> ::Array[Increase::Models::PhysicalCardCreateParams::Shipment::schedule]
171
+ end
149
172
  end
150
173
  end
151
174
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-02 00:00:00.000000000 Z
11
+ date: 2025-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool