increase 1.172.0 → 1.173.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/card_dispute.rb +9 -1
- data/lib/increase/models/card_dispute_create_params.rb +9 -1
- data/lib/increase/models/card_dispute_submit_user_submission_params.rb +9 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_dispute.rbi +8 -0
- data/rbi/increase/models/card_dispute_create_params.rbi +8 -0
- data/rbi/increase/models/card_dispute_submit_user_submission_params.rbi +8 -0
- data/sig/increase/models/card_dispute.rbs +5 -0
- data/sig/increase/models/card_dispute_create_params.rbs +5 -0
- data/sig/increase/models/card_dispute_submit_user_submission_params.rbs +5 -0
- 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: a0a47f29c8c083c113f89f67ec8c1dfea3dd86be84076ef5f769012e0babb1d3
|
|
4
|
+
data.tar.gz: c66505dd6528012238e2f15e90eae4611b50b9bc9c6bac98a7c19a1ba4c51d18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4b56c0373cedcbf3c6f278a83ed2effb703b9066dde7c7395daecec956bb7c49e5601ce6c9fad484b8cf637e23e021b20ab7fb4d394391ae65f9c1d12fa9e27
|
|
7
|
+
data.tar.gz: ceca78ac12c8dde3d14744352f4a1ce0b85cbba96ce5412051cc6f53a31b735c3fda99576dddf418af924e2ad68a64077a6d84d51c7877941af6d57b1e639b86
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.173.0 (2026-01-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.172.0...v1.173.0](https://github.com/Increase/increase-ruby/compare/v1.172.0...v1.173.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([ca3e263](https://github.com/Increase/increase-ruby/commit/ca3e2631c92ccf0a937d01ebe83dcc8f29e8b7cb))
|
|
10
|
+
|
|
3
11
|
## 1.172.0 (2026-01-06)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.171.0...v1.172.0](https://github.com/Increase/increase-ruby/compare/v1.171.0...v1.172.0)
|
data/README.md
CHANGED
|
@@ -4600,6 +4600,12 @@ module Increase
|
|
|
4600
4600
|
required :cardholder_cancellation,
|
|
4601
4601
|
-> { Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation }
|
|
4602
4602
|
|
|
4603
|
+
# @!attribute explanation
|
|
4604
|
+
# Explanation of what was ordered and was not as described.
|
|
4605
|
+
#
|
|
4606
|
+
# @return [String]
|
|
4607
|
+
required :explanation, String
|
|
4608
|
+
|
|
4603
4609
|
# @!attribute merchant_resolution_attempted
|
|
4604
4610
|
# Merchant resolution attempted.
|
|
4605
4611
|
#
|
|
@@ -4613,12 +4619,14 @@ module Increase
|
|
|
4613
4619
|
# @return [Date]
|
|
4614
4620
|
required :received_at, Date
|
|
4615
4621
|
|
|
4616
|
-
# @!method initialize(cardholder_cancellation:, merchant_resolution_attempted:, received_at:)
|
|
4622
|
+
# @!method initialize(cardholder_cancellation:, explanation:, merchant_resolution_attempted:, received_at:)
|
|
4617
4623
|
# Services not as described. Present if and only if `category` is
|
|
4618
4624
|
# `consumer_services_not_as_described`.
|
|
4619
4625
|
#
|
|
4620
4626
|
# @param cardholder_cancellation [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation] Cardholder cancellation.
|
|
4621
4627
|
#
|
|
4628
|
+
# @param explanation [String] Explanation of what was ordered and was not as described.
|
|
4629
|
+
#
|
|
4622
4630
|
# @param merchant_resolution_attempted [Symbol, Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted] Merchant resolution attempted.
|
|
4623
4631
|
#
|
|
4624
4632
|
# @param received_at [Date] Received at.
|
|
@@ -2870,6 +2870,12 @@ module Increase
|
|
|
2870
2870
|
required :cardholder_cancellation,
|
|
2871
2871
|
-> { Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::CardholderCancellation }
|
|
2872
2872
|
|
|
2873
|
+
# @!attribute explanation
|
|
2874
|
+
# Explanation of what was ordered and was not as described.
|
|
2875
|
+
#
|
|
2876
|
+
# @return [String]
|
|
2877
|
+
required :explanation, String
|
|
2878
|
+
|
|
2873
2879
|
# @!attribute merchant_resolution_attempted
|
|
2874
2880
|
# Merchant resolution attempted.
|
|
2875
2881
|
#
|
|
@@ -2883,12 +2889,14 @@ module Increase
|
|
|
2883
2889
|
# @return [Date]
|
|
2884
2890
|
required :received_at, Date
|
|
2885
2891
|
|
|
2886
|
-
# @!method initialize(cardholder_cancellation:, merchant_resolution_attempted:, received_at:)
|
|
2892
|
+
# @!method initialize(cardholder_cancellation:, explanation:, merchant_resolution_attempted:, received_at:)
|
|
2887
2893
|
# Services not as described. Required if and only if `category` is
|
|
2888
2894
|
# `consumer_services_not_as_described`.
|
|
2889
2895
|
#
|
|
2890
2896
|
# @param cardholder_cancellation [Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::CardholderCancellation] Cardholder cancellation.
|
|
2891
2897
|
#
|
|
2898
|
+
# @param explanation [String] Explanation of what was ordered and was not as described.
|
|
2899
|
+
#
|
|
2892
2900
|
# @param merchant_resolution_attempted [Symbol, Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted] Merchant resolution attempted.
|
|
2893
2901
|
#
|
|
2894
2902
|
# @param received_at [Date] Received at.
|
|
@@ -2939,6 +2939,12 @@ module Increase
|
|
|
2939
2939
|
required :cardholder_cancellation,
|
|
2940
2940
|
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation }
|
|
2941
2941
|
|
|
2942
|
+
# @!attribute explanation
|
|
2943
|
+
# Explanation of what was ordered and was not as described.
|
|
2944
|
+
#
|
|
2945
|
+
# @return [String]
|
|
2946
|
+
required :explanation, String
|
|
2947
|
+
|
|
2942
2948
|
# @!attribute merchant_resolution_attempted
|
|
2943
2949
|
# Merchant resolution attempted.
|
|
2944
2950
|
#
|
|
@@ -2952,12 +2958,14 @@ module Increase
|
|
|
2952
2958
|
# @return [Date]
|
|
2953
2959
|
required :received_at, Date
|
|
2954
2960
|
|
|
2955
|
-
# @!method initialize(cardholder_cancellation:, merchant_resolution_attempted:, received_at:)
|
|
2961
|
+
# @!method initialize(cardholder_cancellation:, explanation:, merchant_resolution_attempted:, received_at:)
|
|
2956
2962
|
# Services not as described. Required if and only if `category` is
|
|
2957
2963
|
# `consumer_services_not_as_described`.
|
|
2958
2964
|
#
|
|
2959
2965
|
# @param cardholder_cancellation [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation] Cardholder cancellation.
|
|
2960
2966
|
#
|
|
2967
|
+
# @param explanation [String] Explanation of what was ordered and was not as described.
|
|
2968
|
+
#
|
|
2961
2969
|
# @param merchant_resolution_attempted [Symbol, Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted] Merchant resolution attempted.
|
|
2962
2970
|
#
|
|
2963
2971
|
# @param received_at [Date] Received at.
|
data/lib/increase/version.rb
CHANGED
|
@@ -9599,6 +9599,10 @@ module Increase
|
|
|
9599
9599
|
end
|
|
9600
9600
|
attr_writer :cardholder_cancellation
|
|
9601
9601
|
|
|
9602
|
+
# Explanation of what was ordered and was not as described.
|
|
9603
|
+
sig { returns(String) }
|
|
9604
|
+
attr_accessor :explanation
|
|
9605
|
+
|
|
9602
9606
|
# Merchant resolution attempted.
|
|
9603
9607
|
sig do
|
|
9604
9608
|
returns(
|
|
@@ -9617,6 +9621,7 @@ module Increase
|
|
|
9617
9621
|
params(
|
|
9618
9622
|
cardholder_cancellation:
|
|
9619
9623
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation::OrHash,
|
|
9624
|
+
explanation: String,
|
|
9620
9625
|
merchant_resolution_attempted:
|
|
9621
9626
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted::OrSymbol,
|
|
9622
9627
|
received_at: Date
|
|
@@ -9625,6 +9630,8 @@ module Increase
|
|
|
9625
9630
|
def self.new(
|
|
9626
9631
|
# Cardholder cancellation.
|
|
9627
9632
|
cardholder_cancellation:,
|
|
9633
|
+
# Explanation of what was ordered and was not as described.
|
|
9634
|
+
explanation:,
|
|
9628
9635
|
# Merchant resolution attempted.
|
|
9629
9636
|
merchant_resolution_attempted:,
|
|
9630
9637
|
# Received at.
|
|
@@ -9637,6 +9644,7 @@ module Increase
|
|
|
9637
9644
|
{
|
|
9638
9645
|
cardholder_cancellation:
|
|
9639
9646
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
9647
|
+
explanation: String,
|
|
9640
9648
|
merchant_resolution_attempted:
|
|
9641
9649
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted::TaggedSymbol,
|
|
9642
9650
|
received_at: Date
|
|
@@ -6041,6 +6041,10 @@ module Increase
|
|
|
6041
6041
|
end
|
|
6042
6042
|
attr_writer :cardholder_cancellation
|
|
6043
6043
|
|
|
6044
|
+
# Explanation of what was ordered and was not as described.
|
|
6045
|
+
sig { returns(String) }
|
|
6046
|
+
attr_accessor :explanation
|
|
6047
|
+
|
|
6044
6048
|
# Merchant resolution attempted.
|
|
6045
6049
|
sig do
|
|
6046
6050
|
returns(
|
|
@@ -6059,6 +6063,7 @@ module Increase
|
|
|
6059
6063
|
params(
|
|
6060
6064
|
cardholder_cancellation:
|
|
6061
6065
|
Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::CardholderCancellation::OrHash,
|
|
6066
|
+
explanation: String,
|
|
6062
6067
|
merchant_resolution_attempted:
|
|
6063
6068
|
Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted::OrSymbol,
|
|
6064
6069
|
received_at: Date
|
|
@@ -6067,6 +6072,8 @@ module Increase
|
|
|
6067
6072
|
def self.new(
|
|
6068
6073
|
# Cardholder cancellation.
|
|
6069
6074
|
cardholder_cancellation:,
|
|
6075
|
+
# Explanation of what was ordered and was not as described.
|
|
6076
|
+
explanation:,
|
|
6070
6077
|
# Merchant resolution attempted.
|
|
6071
6078
|
merchant_resolution_attempted:,
|
|
6072
6079
|
# Received at.
|
|
@@ -6079,6 +6086,7 @@ module Increase
|
|
|
6079
6086
|
{
|
|
6080
6087
|
cardholder_cancellation:
|
|
6081
6088
|
Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
6089
|
+
explanation: String,
|
|
6082
6090
|
merchant_resolution_attempted:
|
|
6083
6091
|
Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted::OrSymbol,
|
|
6084
6092
|
received_at: Date
|
|
@@ -6250,6 +6250,10 @@ module Increase
|
|
|
6250
6250
|
end
|
|
6251
6251
|
attr_writer :cardholder_cancellation
|
|
6252
6252
|
|
|
6253
|
+
# Explanation of what was ordered and was not as described.
|
|
6254
|
+
sig { returns(String) }
|
|
6255
|
+
attr_accessor :explanation
|
|
6256
|
+
|
|
6253
6257
|
# Merchant resolution attempted.
|
|
6254
6258
|
sig do
|
|
6255
6259
|
returns(
|
|
@@ -6268,6 +6272,7 @@ module Increase
|
|
|
6268
6272
|
params(
|
|
6269
6273
|
cardholder_cancellation:
|
|
6270
6274
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation::OrHash,
|
|
6275
|
+
explanation: String,
|
|
6271
6276
|
merchant_resolution_attempted:
|
|
6272
6277
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted::OrSymbol,
|
|
6273
6278
|
received_at: Date
|
|
@@ -6276,6 +6281,8 @@ module Increase
|
|
|
6276
6281
|
def self.new(
|
|
6277
6282
|
# Cardholder cancellation.
|
|
6278
6283
|
cardholder_cancellation:,
|
|
6284
|
+
# Explanation of what was ordered and was not as described.
|
|
6285
|
+
explanation:,
|
|
6279
6286
|
# Merchant resolution attempted.
|
|
6280
6287
|
merchant_resolution_attempted:,
|
|
6281
6288
|
# Received at.
|
|
@@ -6288,6 +6295,7 @@ module Increase
|
|
|
6288
6295
|
{
|
|
6289
6296
|
cardholder_cancellation:
|
|
6290
6297
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
6298
|
+
explanation: String,
|
|
6291
6299
|
merchant_resolution_attempted:
|
|
6292
6300
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::MerchantResolutionAttempted::OrSymbol,
|
|
6293
6301
|
received_at: Date
|
|
@@ -3510,6 +3510,7 @@ module Increase
|
|
|
3510
3510
|
type consumer_services_not_as_described =
|
|
3511
3511
|
{
|
|
3512
3512
|
cardholder_cancellation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
3513
|
+
explanation: String,
|
|
3513
3514
|
merchant_resolution_attempted: Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
3514
3515
|
received_at: Date
|
|
3515
3516
|
}
|
|
@@ -3517,18 +3518,22 @@ module Increase
|
|
|
3517
3518
|
class ConsumerServicesNotAsDescribed < Increase::Internal::Type::BaseModel
|
|
3518
3519
|
attr_accessor cardholder_cancellation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation
|
|
3519
3520
|
|
|
3521
|
+
attr_accessor explanation: String
|
|
3522
|
+
|
|
3520
3523
|
attr_accessor merchant_resolution_attempted: Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::merchant_resolution_attempted
|
|
3521
3524
|
|
|
3522
3525
|
attr_accessor received_at: Date
|
|
3523
3526
|
|
|
3524
3527
|
def initialize: (
|
|
3525
3528
|
cardholder_cancellation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
3529
|
+
explanation: String,
|
|
3526
3530
|
merchant_resolution_attempted: Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
3527
3531
|
received_at: Date
|
|
3528
3532
|
) -> void
|
|
3529
3533
|
|
|
3530
3534
|
def to_hash: -> {
|
|
3531
3535
|
cardholder_cancellation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
3536
|
+
explanation: String,
|
|
3532
3537
|
merchant_resolution_attempted: Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
3533
3538
|
received_at: Date
|
|
3534
3539
|
}
|
|
@@ -2557,6 +2557,7 @@ module Increase
|
|
|
2557
2557
|
type consumer_services_not_as_described =
|
|
2558
2558
|
{
|
|
2559
2559
|
cardholder_cancellation: Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
2560
|
+
explanation: String,
|
|
2560
2561
|
merchant_resolution_attempted: Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
2561
2562
|
received_at: Date
|
|
2562
2563
|
}
|
|
@@ -2564,18 +2565,22 @@ module Increase
|
|
|
2564
2565
|
class ConsumerServicesNotAsDescribed < Increase::Internal::Type::BaseModel
|
|
2565
2566
|
attr_accessor cardholder_cancellation: Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::CardholderCancellation
|
|
2566
2567
|
|
|
2568
|
+
attr_accessor explanation: String
|
|
2569
|
+
|
|
2567
2570
|
attr_accessor merchant_resolution_attempted: Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::merchant_resolution_attempted
|
|
2568
2571
|
|
|
2569
2572
|
attr_accessor received_at: Date
|
|
2570
2573
|
|
|
2571
2574
|
def initialize: (
|
|
2572
2575
|
cardholder_cancellation: Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
2576
|
+
explanation: String,
|
|
2573
2577
|
merchant_resolution_attempted: Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
2574
2578
|
received_at: Date
|
|
2575
2579
|
) -> void
|
|
2576
2580
|
|
|
2577
2581
|
def to_hash: -> {
|
|
2578
2582
|
cardholder_cancellation: Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
2583
|
+
explanation: String,
|
|
2579
2584
|
merchant_resolution_attempted: Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
2580
2585
|
received_at: Date
|
|
2581
2586
|
}
|
|
@@ -2614,6 +2614,7 @@ module Increase
|
|
|
2614
2614
|
type consumer_services_not_as_described =
|
|
2615
2615
|
{
|
|
2616
2616
|
cardholder_cancellation: Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
2617
|
+
explanation: String,
|
|
2617
2618
|
merchant_resolution_attempted: Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
2618
2619
|
received_at: Date
|
|
2619
2620
|
}
|
|
@@ -2621,18 +2622,22 @@ module Increase
|
|
|
2621
2622
|
class ConsumerServicesNotAsDescribed < Increase::Internal::Type::BaseModel
|
|
2622
2623
|
attr_accessor cardholder_cancellation: Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation
|
|
2623
2624
|
|
|
2625
|
+
attr_accessor explanation: String
|
|
2626
|
+
|
|
2624
2627
|
attr_accessor merchant_resolution_attempted: Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::merchant_resolution_attempted
|
|
2625
2628
|
|
|
2626
2629
|
attr_accessor received_at: Date
|
|
2627
2630
|
|
|
2628
2631
|
def initialize: (
|
|
2629
2632
|
cardholder_cancellation: Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
2633
|
+
explanation: String,
|
|
2630
2634
|
merchant_resolution_attempted: Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
2631
2635
|
received_at: Date
|
|
2632
2636
|
) -> void
|
|
2633
2637
|
|
|
2634
2638
|
def to_hash: -> {
|
|
2635
2639
|
cardholder_cancellation: Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::CardholderCancellation,
|
|
2640
|
+
explanation: String,
|
|
2636
2641
|
merchant_resolution_attempted: Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotAsDescribed::merchant_resolution_attempted,
|
|
2637
2642
|
received_at: Date
|
|
2638
2643
|
}
|
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.173.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-01-
|
|
11
|
+
date: 2026-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|