increase 1.199.0 → 1.201.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/pending_transaction.rb +15 -15
- data/lib/increase/models/pending_transaction_list_params.rb +2 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/pending_transaction.rbi +21 -21
- data/rbi/increase/models/pending_transaction_list_params.rbi +3 -3
- data/sig/increase/models/pending_transaction.rbs +9 -9
- data/sig/increase/models/pending_transaction_list_params.rbs +3 -3
- 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: 81896b5f06d58b9e87353e5adecb619d823873afa1a2bc577987bb8ae56eb4a3
|
|
4
|
+
data.tar.gz: d196b7acae897a0c4611351f9e271852e0a7b62241425e88009ab12ab1aeaf5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d3b09d2419807e52f413b83311f9bd2294ce2e2e9cfa9a662d5b116dca10bd65296ea3e9dd1aba19cbd5f143102dda38c35a989d9bc99df0bf67f9fe2946a32
|
|
7
|
+
data.tar.gz: 6ca9f27cb4b45e3be16b7446a8cbbbbe811d0621f5dcd7a3687bb150f8b4baa77fbca596b8ab93184f92291a49f19996b8f04f633c3ee3bf94b68d44ea46dfbf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.201.0 (2026-02-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.200.0...v1.201.0](https://github.com/Increase/increase-ruby/compare/v1.200.0...v1.201.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([28f77cf](https://github.com/Increase/increase-ruby/commit/28f77cfa917e80b7e15d1b93b89deccf7d15d303))
|
|
10
|
+
|
|
11
|
+
## 1.200.0 (2026-02-05)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.199.0...v1.200.0](https://github.com/Increase/increase-ruby/compare/v1.199.0...v1.200.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([384b3e6](https://github.com/Increase/increase-ruby/commit/384b3e658511e0eae3e01aa17f5c59c32a013f44))
|
|
18
|
+
|
|
3
19
|
## 1.199.0 (2026-02-04)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.198.0...v1.199.0](https://github.com/Increase/increase-ruby/compare/v1.198.0...v1.199.0)
|
data/README.md
CHANGED
|
@@ -185,14 +185,14 @@ module Increase
|
|
|
185
185
|
-> { Increase::PendingTransaction::Source::ACHTransferInstruction },
|
|
186
186
|
nil?: true
|
|
187
187
|
|
|
188
|
-
# @!attribute
|
|
189
|
-
# A Blockchain Off-Ramp Transfer
|
|
188
|
+
# @!attribute blockchain_offramp_transfer_instruction
|
|
189
|
+
# A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
|
|
190
190
|
# the JSON response if and only if `category` is equal to
|
|
191
|
-
# `
|
|
191
|
+
# `blockchain_offramp_transfer_instruction`.
|
|
192
192
|
#
|
|
193
|
-
# @return [Increase::Models::PendingTransaction::Source::
|
|
194
|
-
required :
|
|
195
|
-
-> { Increase::PendingTransaction::Source::
|
|
193
|
+
# @return [Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferInstruction, nil]
|
|
194
|
+
required :blockchain_offramp_transfer_instruction,
|
|
195
|
+
-> { Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction },
|
|
196
196
|
nil?: true
|
|
197
197
|
|
|
198
198
|
# @!attribute blockchain_onramp_transfer_instruction
|
|
@@ -330,7 +330,7 @@ module Increase
|
|
|
330
330
|
-> { Increase::PendingTransaction::Source::WireTransferInstruction },
|
|
331
331
|
nil?: true
|
|
332
332
|
|
|
333
|
-
# @!method initialize(account_transfer_instruction:, ach_transfer_instruction:,
|
|
333
|
+
# @!method initialize(account_transfer_instruction:, ach_transfer_instruction:, blockchain_offramp_transfer_instruction:, blockchain_onramp_transfer_instruction:, card_authorization:, card_push_transfer_instruction:, category:, check_deposit_instruction:, check_transfer_instruction:, fednow_transfer_instruction:, inbound_funds_hold:, inbound_wire_transfer_reversal:, other:, real_time_payments_transfer_instruction:, swift_transfer_instruction:, user_initiated_hold:, wire_transfer_instruction:)
|
|
334
334
|
# Some parameter documentations has been truncated, see
|
|
335
335
|
# {Increase::Models::PendingTransaction::Source} for more details.
|
|
336
336
|
#
|
|
@@ -342,7 +342,7 @@ module Increase
|
|
|
342
342
|
#
|
|
343
343
|
# @param ach_transfer_instruction [Increase::Models::PendingTransaction::Source::ACHTransferInstruction, nil] An ACH Transfer Instruction object. This field will be present in the JSON respo
|
|
344
344
|
#
|
|
345
|
-
# @param
|
|
345
|
+
# @param blockchain_offramp_transfer_instruction [Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferInstruction, nil] A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
|
|
346
346
|
#
|
|
347
347
|
# @param blockchain_onramp_transfer_instruction [Increase::Models::PendingTransaction::Source::BlockchainOnrampTransferInstruction, nil] A Blockchain On-Ramp Transfer Instruction object. This field will be present in
|
|
348
348
|
#
|
|
@@ -447,8 +447,8 @@ module Increase
|
|
|
447
447
|
# @param transfer_id [String] The identifier of the ACH Transfer that led to this Pending Transaction.
|
|
448
448
|
end
|
|
449
449
|
|
|
450
|
-
# @see Increase::Models::PendingTransaction::Source#
|
|
451
|
-
class
|
|
450
|
+
# @see Increase::Models::PendingTransaction::Source#blockchain_offramp_transfer_instruction
|
|
451
|
+
class BlockchainOfframpTransferInstruction < Increase::Internal::Type::BaseModel
|
|
452
452
|
# @!attribute source_blockchain_address_id
|
|
453
453
|
# The identifier of the Blockchain Address the funds were received at.
|
|
454
454
|
#
|
|
@@ -463,12 +463,12 @@ module Increase
|
|
|
463
463
|
|
|
464
464
|
# @!method initialize(source_blockchain_address_id:, transfer_id:)
|
|
465
465
|
# Some parameter documentations has been truncated, see
|
|
466
|
-
# {Increase::Models::PendingTransaction::Source::
|
|
466
|
+
# {Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferInstruction}
|
|
467
467
|
# for more details.
|
|
468
468
|
#
|
|
469
|
-
# A Blockchain Off-Ramp Transfer
|
|
469
|
+
# A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
|
|
470
470
|
# the JSON response if and only if `category` is equal to
|
|
471
|
-
# `
|
|
471
|
+
# `blockchain_offramp_transfer_instruction`.
|
|
472
472
|
#
|
|
473
473
|
# @param source_blockchain_address_id [String] The identifier of the Blockchain Address the funds were received at.
|
|
474
474
|
#
|
|
@@ -1824,8 +1824,8 @@ module Increase
|
|
|
1824
1824
|
# Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
|
|
1825
1825
|
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION = :blockchain_onramp_transfer_instruction
|
|
1826
1826
|
|
|
1827
|
-
# Blockchain Off-Ramp Transfer
|
|
1828
|
-
|
|
1827
|
+
# Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
|
|
1828
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION = :blockchain_offramp_transfer_instruction
|
|
1829
1829
|
|
|
1830
1830
|
# The Pending Transaction was made for an undocumented or deprecated reason.
|
|
1831
1831
|
OTHER = :other
|
|
@@ -130,8 +130,8 @@ module Increase
|
|
|
130
130
|
# Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
|
|
131
131
|
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION = :blockchain_onramp_transfer_instruction
|
|
132
132
|
|
|
133
|
-
# Blockchain Off-Ramp Transfer
|
|
134
|
-
|
|
133
|
+
# Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
|
|
134
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION = :blockchain_offramp_transfer_instruction
|
|
135
135
|
|
|
136
136
|
# The Pending Transaction was made for an undocumented or deprecated reason.
|
|
137
137
|
OTHER = :other
|
data/lib/increase/version.rb
CHANGED
|
@@ -277,27 +277,27 @@ module Increase
|
|
|
277
277
|
end
|
|
278
278
|
attr_writer :ach_transfer_instruction
|
|
279
279
|
|
|
280
|
-
# A Blockchain Off-Ramp Transfer
|
|
280
|
+
# A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
|
|
281
281
|
# the JSON response if and only if `category` is equal to
|
|
282
|
-
# `
|
|
282
|
+
# `blockchain_offramp_transfer_instruction`.
|
|
283
283
|
sig do
|
|
284
284
|
returns(
|
|
285
285
|
T.nilable(
|
|
286
|
-
Increase::PendingTransaction::Source::
|
|
286
|
+
Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction
|
|
287
287
|
)
|
|
288
288
|
)
|
|
289
289
|
end
|
|
290
|
-
attr_reader :
|
|
290
|
+
attr_reader :blockchain_offramp_transfer_instruction
|
|
291
291
|
|
|
292
292
|
sig do
|
|
293
293
|
params(
|
|
294
|
-
|
|
294
|
+
blockchain_offramp_transfer_instruction:
|
|
295
295
|
T.nilable(
|
|
296
|
-
Increase::PendingTransaction::Source::
|
|
296
|
+
Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction::OrHash
|
|
297
297
|
)
|
|
298
298
|
).void
|
|
299
299
|
end
|
|
300
|
-
attr_writer :
|
|
300
|
+
attr_writer :blockchain_offramp_transfer_instruction
|
|
301
301
|
|
|
302
302
|
# A Blockchain On-Ramp Transfer Instruction object. This field will be present in
|
|
303
303
|
# the JSON response if and only if `category` is equal to
|
|
@@ -573,9 +573,9 @@ module Increase
|
|
|
573
573
|
T.nilable(
|
|
574
574
|
Increase::PendingTransaction::Source::ACHTransferInstruction::OrHash
|
|
575
575
|
),
|
|
576
|
-
|
|
576
|
+
blockchain_offramp_transfer_instruction:
|
|
577
577
|
T.nilable(
|
|
578
|
-
Increase::PendingTransaction::Source::
|
|
578
|
+
Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction::OrHash
|
|
579
579
|
),
|
|
580
580
|
blockchain_onramp_transfer_instruction:
|
|
581
581
|
T.nilable(
|
|
@@ -634,10 +634,10 @@ module Increase
|
|
|
634
634
|
# An ACH Transfer Instruction object. This field will be present in the JSON
|
|
635
635
|
# response if and only if `category` is equal to `ach_transfer_instruction`.
|
|
636
636
|
ach_transfer_instruction:,
|
|
637
|
-
# A Blockchain Off-Ramp Transfer
|
|
637
|
+
# A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
|
|
638
638
|
# the JSON response if and only if `category` is equal to
|
|
639
|
-
# `
|
|
640
|
-
|
|
639
|
+
# `blockchain_offramp_transfer_instruction`.
|
|
640
|
+
blockchain_offramp_transfer_instruction:,
|
|
641
641
|
# A Blockchain On-Ramp Transfer Instruction object. This field will be present in
|
|
642
642
|
# the JSON response if and only if `category` is equal to
|
|
643
643
|
# `blockchain_onramp_transfer_instruction`.
|
|
@@ -703,9 +703,9 @@ module Increase
|
|
|
703
703
|
T.nilable(
|
|
704
704
|
Increase::PendingTransaction::Source::ACHTransferInstruction
|
|
705
705
|
),
|
|
706
|
-
|
|
706
|
+
blockchain_offramp_transfer_instruction:
|
|
707
707
|
T.nilable(
|
|
708
|
-
Increase::PendingTransaction::Source::
|
|
708
|
+
Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction
|
|
709
709
|
),
|
|
710
710
|
blockchain_onramp_transfer_instruction:
|
|
711
711
|
T.nilable(
|
|
@@ -893,11 +893,11 @@ module Increase
|
|
|
893
893
|
end
|
|
894
894
|
end
|
|
895
895
|
|
|
896
|
-
class
|
|
896
|
+
class BlockchainOfframpTransferInstruction < Increase::Internal::Type::BaseModel
|
|
897
897
|
OrHash =
|
|
898
898
|
T.type_alias do
|
|
899
899
|
T.any(
|
|
900
|
-
Increase::PendingTransaction::Source::
|
|
900
|
+
Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction,
|
|
901
901
|
Increase::Internal::AnyHash
|
|
902
902
|
)
|
|
903
903
|
end
|
|
@@ -910,9 +910,9 @@ module Increase
|
|
|
910
910
|
sig { returns(String) }
|
|
911
911
|
attr_accessor :transfer_id
|
|
912
912
|
|
|
913
|
-
# A Blockchain Off-Ramp Transfer
|
|
913
|
+
# A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
|
|
914
914
|
# the JSON response if and only if `category` is equal to
|
|
915
|
-
# `
|
|
915
|
+
# `blockchain_offramp_transfer_instruction`.
|
|
916
916
|
sig do
|
|
917
917
|
params(
|
|
918
918
|
source_blockchain_address_id: String,
|
|
@@ -3475,10 +3475,10 @@ module Increase
|
|
|
3475
3475
|
Increase::PendingTransaction::Source::Category::TaggedSymbol
|
|
3476
3476
|
)
|
|
3477
3477
|
|
|
3478
|
-
# Blockchain Off-Ramp Transfer
|
|
3479
|
-
|
|
3478
|
+
# Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
|
|
3479
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION =
|
|
3480
3480
|
T.let(
|
|
3481
|
-
:
|
|
3481
|
+
:blockchain_offramp_transfer_instruction,
|
|
3482
3482
|
Increase::PendingTransaction::Source::Category::TaggedSymbol
|
|
3483
3483
|
)
|
|
3484
3484
|
|
|
@@ -293,10 +293,10 @@ module Increase
|
|
|
293
293
|
Increase::PendingTransactionListParams::Category::In::TaggedSymbol
|
|
294
294
|
)
|
|
295
295
|
|
|
296
|
-
# Blockchain Off-Ramp Transfer
|
|
297
|
-
|
|
296
|
+
# Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
|
|
297
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION =
|
|
298
298
|
T.let(
|
|
299
|
-
:
|
|
299
|
+
:blockchain_offramp_transfer_instruction,
|
|
300
300
|
Increase::PendingTransactionListParams::Category::In::TaggedSymbol
|
|
301
301
|
)
|
|
302
302
|
|
|
@@ -108,7 +108,7 @@ module Increase
|
|
|
108
108
|
{
|
|
109
109
|
account_transfer_instruction: Increase::PendingTransaction::Source::AccountTransferInstruction?,
|
|
110
110
|
ach_transfer_instruction: Increase::PendingTransaction::Source::ACHTransferInstruction?,
|
|
111
|
-
|
|
111
|
+
blockchain_offramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction?,
|
|
112
112
|
blockchain_onramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction?,
|
|
113
113
|
card_authorization: Increase::PendingTransaction::Source::CardAuthorization?,
|
|
114
114
|
card_push_transfer_instruction: Increase::PendingTransaction::Source::CardPushTransferInstruction?,
|
|
@@ -130,7 +130,7 @@ module Increase
|
|
|
130
130
|
|
|
131
131
|
attr_accessor ach_transfer_instruction: Increase::PendingTransaction::Source::ACHTransferInstruction?
|
|
132
132
|
|
|
133
|
-
attr_accessor
|
|
133
|
+
attr_accessor blockchain_offramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction?
|
|
134
134
|
|
|
135
135
|
attr_accessor blockchain_onramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction?
|
|
136
136
|
|
|
@@ -163,7 +163,7 @@ module Increase
|
|
|
163
163
|
def initialize: (
|
|
164
164
|
account_transfer_instruction: Increase::PendingTransaction::Source::AccountTransferInstruction?,
|
|
165
165
|
ach_transfer_instruction: Increase::PendingTransaction::Source::ACHTransferInstruction?,
|
|
166
|
-
|
|
166
|
+
blockchain_offramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction?,
|
|
167
167
|
blockchain_onramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction?,
|
|
168
168
|
card_authorization: Increase::PendingTransaction::Source::CardAuthorization?,
|
|
169
169
|
card_push_transfer_instruction: Increase::PendingTransaction::Source::CardPushTransferInstruction?,
|
|
@@ -183,7 +183,7 @@ module Increase
|
|
|
183
183
|
def to_hash: -> {
|
|
184
184
|
account_transfer_instruction: Increase::PendingTransaction::Source::AccountTransferInstruction?,
|
|
185
185
|
ach_transfer_instruction: Increase::PendingTransaction::Source::ACHTransferInstruction?,
|
|
186
|
-
|
|
186
|
+
blockchain_offramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction?,
|
|
187
187
|
blockchain_onramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction?,
|
|
188
188
|
card_authorization: Increase::PendingTransaction::Source::CardAuthorization?,
|
|
189
189
|
card_push_transfer_instruction: Increase::PendingTransaction::Source::CardPushTransferInstruction?,
|
|
@@ -250,10 +250,10 @@ module Increase
|
|
|
250
250
|
def to_hash: -> { amount: Integer, transfer_id: String }
|
|
251
251
|
end
|
|
252
252
|
|
|
253
|
-
type
|
|
253
|
+
type blockchain_offramp_transfer_instruction =
|
|
254
254
|
{ source_blockchain_address_id: String, transfer_id: String }
|
|
255
255
|
|
|
256
|
-
class
|
|
256
|
+
class BlockchainOfframpTransferInstruction < Increase::Internal::Type::BaseModel
|
|
257
257
|
attr_accessor source_blockchain_address_id: String
|
|
258
258
|
|
|
259
259
|
attr_accessor transfer_id: String
|
|
@@ -1147,7 +1147,7 @@ module Increase
|
|
|
1147
1147
|
| :swift_transfer_instruction
|
|
1148
1148
|
| :card_push_transfer_instruction
|
|
1149
1149
|
| :blockchain_onramp_transfer_instruction
|
|
1150
|
-
| :
|
|
1150
|
+
| :blockchain_offramp_transfer_instruction
|
|
1151
1151
|
| :other
|
|
1152
1152
|
|
|
1153
1153
|
module Category
|
|
@@ -1195,8 +1195,8 @@ module Increase
|
|
|
1195
1195
|
# Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
|
|
1196
1196
|
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION: :blockchain_onramp_transfer_instruction
|
|
1197
1197
|
|
|
1198
|
-
# Blockchain Off-Ramp Transfer
|
|
1199
|
-
|
|
1198
|
+
# Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
|
|
1199
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION: :blockchain_offramp_transfer_instruction
|
|
1200
1200
|
|
|
1201
1201
|
# The Pending Transaction was made for an undocumented or deprecated reason.
|
|
1202
1202
|
OTHER: :other
|
|
@@ -107,7 +107,7 @@ module Increase
|
|
|
107
107
|
| :swift_transfer_instruction
|
|
108
108
|
| :card_push_transfer_instruction
|
|
109
109
|
| :blockchain_onramp_transfer_instruction
|
|
110
|
-
| :
|
|
110
|
+
| :blockchain_offramp_transfer_instruction
|
|
111
111
|
| :other
|
|
112
112
|
|
|
113
113
|
module In
|
|
@@ -155,8 +155,8 @@ module Increase
|
|
|
155
155
|
# Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
|
|
156
156
|
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION: :blockchain_onramp_transfer_instruction
|
|
157
157
|
|
|
158
|
-
# Blockchain Off-Ramp Transfer
|
|
159
|
-
|
|
158
|
+
# Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
|
|
159
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION: :blockchain_offramp_transfer_instruction
|
|
160
160
|
|
|
161
161
|
# The Pending Transaction was made for an undocumented or deprecated reason.
|
|
162
162
|
OTHER: :other
|
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.
|
|
4
|
+
version: 1.201.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|