recurly 4.58.0 → 4.60.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/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +23 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/client/operations.rb +1 -0
- data/lib/recurly/requests/billing_info_create.rb +5 -1
- data/lib/recurly/requests/coupon_bulk_create.rb +1 -1
- data/lib/recurly/requests/payment_gateway_references.rb +18 -0
- data/lib/recurly/resources/billing_info.rb +4 -0
- data/lib/recurly/resources/external_account.rb +1 -1
- data/lib/recurly/resources/invoice.rb +4 -0
- data/lib/recurly/resources/payment_gateway_references.rb +18 -0
- data/lib/recurly/resources/payment_method.rb +5 -1
- data/lib/recurly/resources/reference_only_currency_conversion.rb +22 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +95 -9
- data/recurly.gemspec +2 -0
- metadata +23 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eba1e494499b41ba8c1913b09f627369318b5daa55e5923faf82cfbbde4d0f28
|
4
|
+
data.tar.gz: da464a775040b1d5ea33b66feb1698f5aa68d18fc075f4218e2cf3d1b739d05c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f25c9d51a4dbc24b1a1dc838737e9252ca85ef9193333d6d988cbeffa7421d5a6154a6dd5558c36b1d462f6c9064403a6ba04be6507590cebbf6e2019c63e96a
|
7
|
+
data.tar.gz: c9884672aa89ee2ba372f9397e829aca30c9308632a20211a6836cdf4f846160fca252a7f32e23c860c113290c94cfc9cfa41bc85326893cb98cf9d7bc48b0c2
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.60.0](https://github.com/recurly/recurly-client-ruby/tree/4.60.0) (2025-03-14)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.59.0...4.60.0)
|
6
|
+
|
7
|
+
|
8
|
+
**Merged Pull Requests**
|
9
|
+
|
10
|
+
- Generated Latest Changes for v2021-02-25 [#923](https://github.com/recurly/recurly-client-ruby/pull/923) ([recurly-integrations](https://github.com/recurly-integrations))
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [4.59.0](https://github.com/recurly/recurly-client-ruby/tree/4.59.0) (2025-02-26)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.58.0...4.59.0)
|
17
|
+
|
18
|
+
|
19
|
+
**Merged Pull Requests**
|
20
|
+
|
21
|
+
- Add `funding_source` to `BillingInfo` and `Transaction` [#921](https://github.com/recurly/recurly-client-ruby/pull/921) ([recurly-integrations](https://github.com/recurly-integrations))
|
22
|
+
- Generated Latest Changes for v2021-02-25 [#919](https://github.com/recurly/recurly-client-ruby/pull/919) ([recurly-integrations](https://github.com/recurly-integrations))
|
23
|
+
|
24
|
+
|
25
|
+
|
3
26
|
## [4.58.0](https://github.com/recurly/recurly-client-ruby/tree/4.58.0) (2024-12-16)
|
4
27
|
|
5
28
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.57.0...4.58.0)
|
data/GETTING_STARTED.md
CHANGED
@@ -5,7 +5,7 @@ This repository houses the official ruby client for Recurly's V3 API.
|
|
5
5
|
In your Gemfile, add `recurly` as a dependency.
|
6
6
|
|
7
7
|
```ruby
|
8
|
-
gem 'recurly', '~> 4.
|
8
|
+
gem 'recurly', '~> 4.60'
|
9
9
|
```
|
10
10
|
|
11
11
|
> *Note*: We try to follow [semantic versioning](https://semver.org/) and will only apply breaking changes to major versions.
|
@@ -1698,6 +1698,7 @@ module Recurly
|
|
1698
1698
|
# :end_time [DateTime] Inclusively filter by end_time when +sort=created_at+ or +sort=updated_at+.
|
1699
1699
|
# *Note:* this value is an ISO8601 timestamp. A partial timestamp that does not include a time zone will default to UTC.
|
1700
1700
|
#
|
1701
|
+
# :redeemed [String] Filter unique coupon codes by redemption status. +true+ for redeemed, +false+ for not redeemed.
|
1701
1702
|
#
|
1702
1703
|
# @return [Pager<Resources::UniqueCouponCode>] A list of unique coupon codes that were generated
|
1703
1704
|
#
|
@@ -63,7 +63,7 @@ module Recurly
|
|
63
63
|
define_attribute :gateway_attributes, :GatewayAttributes
|
64
64
|
|
65
65
|
# @!attribute gateway_code
|
66
|
-
# @return [String] An identifier for a specific payment gateway.
|
66
|
+
# @return [String] An identifier for a specific payment gateway.
|
67
67
|
define_attribute :gateway_code, String
|
68
68
|
|
69
69
|
# @!attribute gateway_token
|
@@ -98,6 +98,10 @@ module Recurly
|
|
98
98
|
# @return [String] Use for Online Banking billing info. This should only be used as part of a pending purchase request, when the billing info is nested inside an account object.
|
99
99
|
define_attribute :online_banking_payment_type, String
|
100
100
|
|
101
|
+
# @!attribute payment_gateway_references
|
102
|
+
# @return [Array[PaymentGatewayReferences]] Array of Payment Gateway References, each a reference to a third-party gateway object of varying types.
|
103
|
+
define_attribute :payment_gateway_references, Array, { :item_type => :PaymentGatewayReferences }
|
104
|
+
|
101
105
|
# @!attribute paypal_billing_agreement_id
|
102
106
|
# @return [String] PayPal billing agreement ID
|
103
107
|
define_attribute :paypal_billing_agreement_id, String
|
@@ -7,7 +7,7 @@ module Recurly
|
|
7
7
|
class CouponBulkCreate < Request
|
8
8
|
|
9
9
|
# @!attribute number_of_unique_codes
|
10
|
-
# @return [Integer] The quantity of unique coupon codes to generate
|
10
|
+
# @return [Integer] The quantity of unique coupon codes to generate. A bulk coupon can have up to 100,000 unique codes (or your site's configured limit).
|
11
11
|
define_attribute :number_of_unique_codes, Integer
|
12
12
|
end
|
13
13
|
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# This file is automatically created by Recurly's OpenAPI generation process
|
2
|
+
# and thus any edits you make by hand will be lost. If you wish to make a
|
3
|
+
# change to this file, please create a Github issue explaining the changes you
|
4
|
+
# need and we will usher them to the appropriate places.
|
5
|
+
module Recurly
|
6
|
+
module Requests
|
7
|
+
class PaymentGatewayReferences < Request
|
8
|
+
|
9
|
+
# @!attribute reference_type
|
10
|
+
# @return [String] The type of reference token. Required if token is passed in for Stripe Gateway.
|
11
|
+
define_attribute :reference_type, String
|
12
|
+
|
13
|
+
# @!attribute token
|
14
|
+
# @return [String] Reference value used when the external token was created. If Stripe gateway is used, this value will need to be accompanied by its reference_type.
|
15
|
+
define_attribute :token, String
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -46,6 +46,10 @@ module Recurly
|
|
46
46
|
# @return [String] Object type
|
47
47
|
define_attribute :object, String
|
48
48
|
|
49
|
+
# @!attribute payment_gateway_references
|
50
|
+
# @return [Array[PaymentGatewayReferences]] Array of Payment Gateway References, each a reference to a third-party gateway object of varying types.
|
51
|
+
define_attribute :payment_gateway_references, Array, { :item_type => :PaymentGatewayReferences }
|
52
|
+
|
49
53
|
# @!attribute payment_method
|
50
54
|
# @return [PaymentMethod]
|
51
55
|
define_attribute :payment_method, :PaymentMethod
|
@@ -15,7 +15,7 @@ module Recurly
|
|
15
15
|
define_attribute :external_account_code, String
|
16
16
|
|
17
17
|
# @!attribute external_connection_type
|
18
|
-
# @return [String] Represents the connection type.
|
18
|
+
# @return [String] Represents the connection type. One of the connection types of your enabled App Connectors
|
19
19
|
define_attribute :external_connection_type, String
|
20
20
|
|
21
21
|
# @!attribute id
|
@@ -114,6 +114,10 @@ module Recurly
|
|
114
114
|
# @return [String] On refund invoices, this value will exist and show the invoice ID of the purchase invoice the refund was created from. This field is only populated for sites without the [Only Bill What Changed](https://docs.recurly.com/docs/only-bill-what-changed) feature enabled. Sites with Only Bill What Changed enabled should use the [related_invoices endpoint](https://recurly.com/developers/api/v2021-02-25/index.html#operation/list_related_invoices) to see purchase invoices refunded by this invoice.
|
115
115
|
define_attribute :previous_invoice_id, String
|
116
116
|
|
117
|
+
# @!attribute reference_only_currency_conversion
|
118
|
+
# @return [ReferenceOnlyCurrencyConversion] Reference Only Currency Conversion
|
119
|
+
define_attribute :reference_only_currency_conversion, :ReferenceOnlyCurrencyConversion
|
120
|
+
|
117
121
|
# @!attribute refundable_amount
|
118
122
|
# @return [Float] The refundable amount on a charge invoice. It will be null for all other invoices.
|
119
123
|
define_attribute :refundable_amount, Float
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# This file is automatically created by Recurly's OpenAPI generation process
|
2
|
+
# and thus any edits you make by hand will be lost. If you wish to make a
|
3
|
+
# change to this file, please create a Github issue explaining the changes you
|
4
|
+
# need and we will usher them to the appropriate places.
|
5
|
+
module Recurly
|
6
|
+
module Resources
|
7
|
+
class PaymentGatewayReferences < Resource
|
8
|
+
|
9
|
+
# @!attribute reference_type
|
10
|
+
# @return [String] The type of reference token. Required if token is passed in for Stripe Gateway.
|
11
|
+
define_attribute :reference_type, String
|
12
|
+
|
13
|
+
# @!attribute token
|
14
|
+
# @return [String] Reference value used when the external token was created. If Stripe gateway is used, this value will need to be accompanied by its reference_type.
|
15
|
+
define_attribute :token, String
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -23,7 +23,7 @@ module Recurly
|
|
23
23
|
define_attribute :card_type, String
|
24
24
|
|
25
25
|
# @!attribute cc_bin_country
|
26
|
-
# @return [String] The 2-letter ISO 3166-1 alpha-2 country code associated with the
|
26
|
+
# @return [String] The 2-letter ISO 3166-1 alpha-2 country code associated with the card's issuer, if known.
|
27
27
|
define_attribute :cc_bin_country, String
|
28
28
|
|
29
29
|
# @!attribute exp_month
|
@@ -38,6 +38,10 @@ module Recurly
|
|
38
38
|
# @return [String] Credit card number's first six digits.
|
39
39
|
define_attribute :first_six, String
|
40
40
|
|
41
|
+
# @!attribute funding_source
|
42
|
+
# @return [String] The funding source of the card, if known.
|
43
|
+
define_attribute :funding_source, String
|
44
|
+
|
41
45
|
# @!attribute gateway_attributes
|
42
46
|
# @return [GatewayAttributes] Gateway specific attributes associated with this PaymentMethod
|
43
47
|
define_attribute :gateway_attributes, :GatewayAttributes
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# This file is automatically created by Recurly's OpenAPI generation process
|
2
|
+
# and thus any edits you make by hand will be lost. If you wish to make a
|
3
|
+
# change to this file, please create a Github issue explaining the changes you
|
4
|
+
# need and we will usher them to the appropriate places.
|
5
|
+
module Recurly
|
6
|
+
module Resources
|
7
|
+
class ReferenceOnlyCurrencyConversion < Resource
|
8
|
+
|
9
|
+
# @!attribute currency
|
10
|
+
# @return [String] 3-letter ISO 4217 currency code.
|
11
|
+
define_attribute :currency, String
|
12
|
+
|
13
|
+
# @!attribute subtotal_in_cents
|
14
|
+
# @return [Float] The subtotal converted to the currency.
|
15
|
+
define_attribute :subtotal_in_cents, Float
|
16
|
+
|
17
|
+
# @!attribute tax_in_cents
|
18
|
+
# @return [Float] The tax converted to the currency.
|
19
|
+
define_attribute :tax_in_cents, Float
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
@@ -6265,8 +6265,7 @@ paths:
|
|
6265
6265
|
schema:
|
6266
6266
|
"$ref": "#/components/schemas/UniqueCouponCodeParams"
|
6267
6267
|
'400':
|
6268
|
-
description: Invalid or unpermitted parameter
|
6269
|
-
more than 200 codes at a time?
|
6268
|
+
description: Invalid or unpermitted parameter.
|
6270
6269
|
content:
|
6271
6270
|
application/json:
|
6272
6271
|
schema:
|
@@ -6348,6 +6347,7 @@ paths:
|
|
6348
6347
|
- "$ref": "#/components/parameters/sort_dates"
|
6349
6348
|
- "$ref": "#/components/parameters/filter_begin_time"
|
6350
6349
|
- "$ref": "#/components/parameters/filter_end_time"
|
6350
|
+
- "$ref": "#/components/parameters/filter_redeemed"
|
6351
6351
|
responses:
|
6352
6352
|
'200':
|
6353
6353
|
description: A list of unique coupon codes that were generated
|
@@ -17184,6 +17184,13 @@ components:
|
|
17184
17184
|
- `type=legacy`, only legacy invoices will be returned.
|
17185
17185
|
schema:
|
17186
17186
|
"$ref": "#/components/schemas/FilterInvoiceTypeEnum"
|
17187
|
+
filter_redeemed:
|
17188
|
+
name: redeemed
|
17189
|
+
in: query
|
17190
|
+
description: Filter unique coupon codes by redemption status. `true` for redeemed,
|
17191
|
+
`false` for not redeemed.
|
17192
|
+
schema:
|
17193
|
+
"$ref": "#/components/schemas/FilterRedeemedEnum"
|
17187
17194
|
export_date:
|
17188
17195
|
name: export_date
|
17189
17196
|
in: path
|
@@ -18733,6 +18740,12 @@ components:
|
|
18733
18740
|
description: The `backup_payment_method` field is used to indicate a billing
|
18734
18741
|
info as a backup on the account that will be tried if the initial billing
|
18735
18742
|
info used for an invoice is declined.
|
18743
|
+
payment_gateway_references:
|
18744
|
+
type: array
|
18745
|
+
description: Array of Payment Gateway References, each a reference to a
|
18746
|
+
third-party gateway object of varying types.
|
18747
|
+
items:
|
18748
|
+
"$ref": "#/components/schemas/PaymentGatewayReferences"
|
18736
18749
|
created_at:
|
18737
18750
|
type: string
|
18738
18751
|
format: date-time
|
@@ -18815,9 +18828,21 @@ components:
|
|
18815
18828
|
maxLength: 50
|
18816
18829
|
gateway_code:
|
18817
18830
|
type: string
|
18818
|
-
title: An identifier for a specific payment gateway.
|
18819
|
-
with `gateway_token`.
|
18831
|
+
title: An identifier for a specific payment gateway.
|
18820
18832
|
maxLength: 12
|
18833
|
+
payment_gateway_references:
|
18834
|
+
type: array
|
18835
|
+
description: Array of Payment Gateway References, each a reference to a
|
18836
|
+
third-party gateway object of varying types.
|
18837
|
+
items:
|
18838
|
+
"$ref": "#/components/schemas/PaymentGatewayReferences"
|
18839
|
+
properties:
|
18840
|
+
token:
|
18841
|
+
type: string
|
18842
|
+
maxLength: 50
|
18843
|
+
reference_type:
|
18844
|
+
type: string
|
18845
|
+
"$ref": "#/components/schemas/PaymentGatewayReferencesEnum"
|
18821
18846
|
gateway_attributes:
|
18822
18847
|
type: object
|
18823
18848
|
description: Additional attributes to send to the gateway.
|
@@ -19282,9 +19307,9 @@ components:
|
|
19282
19307
|
number_of_unique_codes:
|
19283
19308
|
type: integer
|
19284
19309
|
title: Number of unique codes
|
19285
|
-
description: The quantity of unique coupon codes to generate
|
19310
|
+
description: The quantity of unique coupon codes to generate. A bulk coupon
|
19311
|
+
can have up to 100,000 unique codes (or your site's configured limit).
|
19286
19312
|
minimum: 1
|
19287
|
-
maximum: 200
|
19288
19313
|
CouponMini:
|
19289
19314
|
type: object
|
19290
19315
|
properties:
|
@@ -20251,6 +20276,8 @@ components:
|
|
20251
20276
|
format: float
|
20252
20277
|
title: Tax
|
20253
20278
|
description: The total tax on this invoice.
|
20279
|
+
reference_only_currency_conversion:
|
20280
|
+
"$ref": "#/components/schemas/ReferenceOnlyCurrencyConversion"
|
20254
20281
|
total:
|
20255
20282
|
type: number
|
20256
20283
|
format: float
|
@@ -21285,6 +21312,22 @@ components:
|
|
21285
21312
|
- currency
|
21286
21313
|
- unit_amount
|
21287
21314
|
- type
|
21315
|
+
PaymentGatewayReferences:
|
21316
|
+
type: object
|
21317
|
+
title: Payment Gateway References Object
|
21318
|
+
description: Array of Payment Gateway References, each a reference to a third-party
|
21319
|
+
gateway object of varying types.
|
21320
|
+
properties:
|
21321
|
+
token:
|
21322
|
+
type: string
|
21323
|
+
title: Token
|
21324
|
+
description: Reference value used when the external token was created. If
|
21325
|
+
Stripe gateway is used, this value will need to be accompanied by its
|
21326
|
+
reference_type.
|
21327
|
+
reference_type:
|
21328
|
+
type: string
|
21329
|
+
title: Reference Type
|
21330
|
+
"$ref": "#/components/schemas/PaymentGatewayReferencesEnum"
|
21288
21331
|
PlanMini:
|
21289
21332
|
type: object
|
21290
21333
|
title: Plan mini details
|
@@ -22248,6 +22291,25 @@ components:
|
|
22248
22291
|
title: Updated at
|
22249
22292
|
format: date-time
|
22250
22293
|
readOnly: true
|
22294
|
+
ReferenceOnlyCurrencyConversion:
|
22295
|
+
type: object
|
22296
|
+
title: Reference Only Currency Conversion
|
22297
|
+
properties:
|
22298
|
+
currency:
|
22299
|
+
type: string
|
22300
|
+
title: Currency
|
22301
|
+
description: 3-letter ISO 4217 currency code.
|
22302
|
+
maxLength: 3
|
22303
|
+
subtotal_in_cents:
|
22304
|
+
type: number
|
22305
|
+
format: float
|
22306
|
+
title: Subtotal In Cents
|
22307
|
+
description: The subtotal converted to the currency.
|
22308
|
+
tax_in_cents:
|
22309
|
+
type: number
|
22310
|
+
format: float
|
22311
|
+
title: Tax In Cents
|
22312
|
+
description: The tax converted to the currency.
|
22251
22313
|
ShippingAddressCreate:
|
22252
22314
|
type: object
|
22253
22315
|
properties:
|
@@ -25273,7 +25335,8 @@ components:
|
|
25273
25335
|
description: Represents the account code for the external account.
|
25274
25336
|
external_connection_type:
|
25275
25337
|
type: string
|
25276
|
-
description: Represents the connection type.
|
25338
|
+
description: Represents the connection type. One of the connection types
|
25339
|
+
of your enabled App Connectors
|
25277
25340
|
created_at:
|
25278
25341
|
type: string
|
25279
25342
|
format: date-time
|
@@ -25823,8 +25886,10 @@ components:
|
|
25823
25886
|
cc_bin_country:
|
25824
25887
|
type: string
|
25825
25888
|
description: The 2-letter ISO 3166-1 alpha-2 country code associated with
|
25826
|
-
the
|
25827
|
-
|
25889
|
+
the card's issuer, if known.
|
25890
|
+
funding_source:
|
25891
|
+
"$ref": "#/components/schemas/CardFundingSourceEnum"
|
25892
|
+
description: The funding source of the card, if known.
|
25828
25893
|
gateway_code:
|
25829
25894
|
type: string
|
25830
25895
|
description: An identifier for a specific payment gateway.
|
@@ -26430,6 +26495,11 @@ components:
|
|
26430
26495
|
- credit
|
26431
26496
|
- legacy
|
26432
26497
|
- non-legacy
|
26498
|
+
FilterRedeemedEnum:
|
26499
|
+
type: string
|
26500
|
+
enum:
|
26501
|
+
- true
|
26502
|
+
- false
|
26433
26503
|
ChannelEnum:
|
26434
26504
|
type: string
|
26435
26505
|
enum:
|
@@ -26491,6 +26561,14 @@ components:
|
|
26491
26561
|
enum:
|
26492
26562
|
- email
|
26493
26563
|
- post
|
26564
|
+
PaymentGatewayReferencesEnum:
|
26565
|
+
type: string
|
26566
|
+
description: The type of reference token. Required if token is passed in for
|
26567
|
+
Stripe Gateway.
|
26568
|
+
enum:
|
26569
|
+
- stripe_confirmation_token
|
26570
|
+
- stripe_customer
|
26571
|
+
- stripe_payment_method
|
26494
26572
|
GatewayTransactionTypeEnum:
|
26495
26573
|
type: string
|
26496
26574
|
enum:
|
@@ -26964,6 +27042,14 @@ components:
|
|
26964
27042
|
- Dankort
|
26965
27043
|
- MasterCard
|
26966
27044
|
- Visa
|
27045
|
+
CardFundingSourceEnum:
|
27046
|
+
type: string
|
27047
|
+
enum:
|
27048
|
+
- credit
|
27049
|
+
- debit
|
27050
|
+
- charge
|
27051
|
+
- prepaid
|
27052
|
+
- deferred_debit
|
26967
27053
|
AccountTypeEnum:
|
26968
27054
|
type: string
|
26969
27055
|
enum:
|
data/recurly.gemspec
CHANGED
@@ -29,6 +29,8 @@ Gem::Specification.new do |spec|
|
|
29
29
|
# spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
30
30
|
spec.require_paths = ["lib"]
|
31
31
|
|
32
|
+
spec.add_dependency "base64", "~> 0.2.0"
|
33
|
+
|
32
34
|
spec.add_development_dependency "bundler", "~> 2.0"
|
33
35
|
spec.add_development_dependency "rake", "~> 12.3.3"
|
34
36
|
spec.add_development_dependency "rspec", "~> 3.0"
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recurly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.60.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: base64
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.2.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.2.0
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: bundler
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,6 +213,7 @@ files:
|
|
199
213
|
- lib/recurly/requests/line_item_refund.rb
|
200
214
|
- lib/recurly/requests/measured_unit_create.rb
|
201
215
|
- lib/recurly/requests/measured_unit_update.rb
|
216
|
+
- lib/recurly/requests/payment_gateway_references.rb
|
202
217
|
- lib/recurly/requests/percentage_tier.rb
|
203
218
|
- lib/recurly/requests/percentage_tiers_by_currency.rb
|
204
219
|
- lib/recurly/requests/plan_create.rb
|
@@ -300,6 +315,7 @@ files:
|
|
300
315
|
- lib/recurly/resources/item_mini.rb
|
301
316
|
- lib/recurly/resources/line_item.rb
|
302
317
|
- lib/recurly/resources/measured_unit.rb
|
318
|
+
- lib/recurly/resources/payment_gateway_references.rb
|
303
319
|
- lib/recurly/resources/payment_method.rb
|
304
320
|
- lib/recurly/resources/percentage_tier.rb
|
305
321
|
- lib/recurly/resources/percentage_tiers_by_currency.rb
|
@@ -311,6 +327,7 @@ files:
|
|
311
327
|
- lib/recurly/resources/plan_ramp_interval.rb
|
312
328
|
- lib/recurly/resources/plan_ramp_pricing.rb
|
313
329
|
- lib/recurly/resources/pricing.rb
|
330
|
+
- lib/recurly/resources/reference_only_currency_conversion.rb
|
314
331
|
- lib/recurly/resources/settings.rb
|
315
332
|
- lib/recurly/resources/shipping_address.rb
|
316
333
|
- lib/recurly/resources/shipping_method.rb
|
@@ -361,8 +378,8 @@ metadata:
|
|
361
378
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
362
379
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
363
380
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
364
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
365
|
-
post_install_message:
|
381
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.60.0
|
382
|
+
post_install_message:
|
366
383
|
rdoc_options: []
|
367
384
|
require_paths:
|
368
385
|
- lib
|
@@ -378,7 +395,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
378
395
|
version: '0'
|
379
396
|
requirements: []
|
380
397
|
rubygems_version: 3.0.3.1
|
381
|
-
signing_key:
|
398
|
+
signing_key:
|
382
399
|
specification_version: 4
|
383
400
|
summary: The ruby client for Recurly's V3 API
|
384
401
|
test_files: []
|