stripe 4.17.0 → 5.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +193 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -14
- data/README.md +167 -63
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +7 -3
- data/lib/stripe/api_operations/list.rb +1 -12
- data/lib/stripe/api_operations/nested_resource.rb +36 -27
- data/lib/stripe/api_operations/request.rb +47 -8
- data/lib/stripe/api_operations/save.rb +8 -7
- data/lib/stripe/api_resource.rb +30 -5
- data/lib/stripe/connection_manager.rb +164 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +31 -10
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +41 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +8 -6
- data/lib/stripe/object_types.rb +102 -0
- data/lib/stripe/{account.rb → resources/account.rb} +44 -33
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
- data/lib/stripe/{checkout → resources/billing_portal}/session.rb +3 -2
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -3
- data/lib/stripe/{bitcoin_transaction.rb → resources/bitcoin_transaction.rb} +1 -1
- data/lib/stripe/{capability.rb → resources/capability.rb} +11 -4
- data/lib/stripe/{card.rb → resources/card.rb} +12 -3
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +2 -1
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +41 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
- data/lib/stripe/{discount.rb → resources/discount.rb} +1 -1
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
- data/lib/stripe/{event.rb → resources/event.rb} +2 -1
- data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
- data/lib/stripe/{file.rb → resources/file.rb} +7 -12
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -1
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +2 -1
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +1 -1
- data/lib/stripe/{issuing → resources/issuing}/authorization.rb +14 -5
- data/lib/stripe/{issuing → resources/issuing}/card.rb +8 -3
- data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +2 -1
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +2 -1
- data/lib/stripe/resources/line_item.rb +7 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/{payment_method.rb → resources/payment_method.rb} +14 -5
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/{person.rb → resources/person.rb} +8 -3
- data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +2 -1
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/{radar → resources/radar}/value_list.rb +2 -1
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +2 -1
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +2 -5
- data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
- data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_run.rb +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +2 -1
- data/lib/stripe/resources/reversal.rb +29 -0
- data/lib/stripe/{review.rb → resources/review.rb} +8 -3
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +2 -1
- data/lib/stripe/{sku.rb → resources/sku.rb} +2 -1
- data/lib/stripe/{source.rb → resources/source.rb} +22 -15
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
- data/lib/stripe/{subscription.rb → resources/subscription.rb} +12 -13
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_id.rb +26 -0
- data/lib/stripe/{tax_rate.rb → resources/tax_rate.rb} +2 -1
- data/lib/stripe/{terminal → resources/terminal}/connection_token.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/location.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +2 -1
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
- data/lib/stripe/{token.rb → resources/token.rb} +2 -1
- data/lib/stripe/{topup.rb → resources/topup.rb} +8 -3
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +7 -0
- data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +1 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +2 -1
- data/lib/stripe/resources.rb +85 -0
- data/lib/stripe/singleton_api_resource.rb +3 -1
- data/lib/stripe/stripe_client.rb +576 -254
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +80 -61
- data/lib/stripe/stripe_response.rb +53 -21
- data/lib/stripe/util.rb +76 -121
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +43 -10
- data/lib/stripe.rb +42 -203
- data/stripe.gemspec +23 -7
- metadata +107 -284
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -8
- data/.rubocop.yml +0 -32
- data/.rubocop_todo.yml +0 -50
- data/.travis.yml +0 -42
- data/lib/stripe/alipay_account.rb +0 -27
- data/lib/stripe/application_fee.rb +0 -23
- data/lib/stripe/application_fee_refund.rb +0 -22
- data/lib/stripe/bank_account.rb +0 -32
- data/lib/stripe/charge.rb +0 -86
- data/lib/stripe/credit_note.rb +0 -18
- data/lib/stripe/customer.rb +0 -95
- data/lib/stripe/dispute.rb +0 -23
- data/lib/stripe/invoice.rb +0 -48
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/login_link.rb +0 -11
- data/lib/stripe/order.rb +0 -34
- data/lib/stripe/payment_intent.rb +0 -30
- data/lib/stripe/payout.rb +0 -24
- data/lib/stripe/reversal.rb +0 -22
- data/lib/stripe/subscription_item.rb +0 -17
- data/lib/stripe/subscription_schedule.rb +0 -35
- data/lib/stripe/subscription_schedule_revision.rb +0 -25
- data/lib/stripe/tax_id.rb +0 -22
- data/lib/stripe/transfer.rb +0 -25
- data/lib/stripe/usage_record.rb +0 -14
- data/test/api_stub_helpers.rb +0 -1
- data/test/openapi/README.md +0 -9
- data/test/stripe/account_link_test.rb +0 -18
- data/test/stripe/account_test.rb +0 -428
- data/test/stripe/alipay_account_test.rb +0 -37
- data/test/stripe/api_operations_test.rb +0 -81
- data/test/stripe/api_resource_test.rb +0 -526
- data/test/stripe/apple_pay_domain_test.rb +0 -46
- data/test/stripe/application_fee_refund_test.rb +0 -37
- data/test/stripe/application_fee_test.rb +0 -58
- data/test/stripe/balance_test.rb +0 -13
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/capability_test.rb +0 -45
- data/test/stripe/charge_test.rb +0 -80
- data/test/stripe/checkout/session_test.rb +0 -41
- data/test/stripe/country_spec_test.rb +0 -20
- data/test/stripe/coupon_test.rb +0 -61
- data/test/stripe/credit_note_test.rb +0 -61
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_test.rb +0 -226
- data/test/stripe/dispute_test.rb +0 -51
- data/test/stripe/ephemeral_key_test.rb +0 -93
- data/test/stripe/errors_test.rb +0 -20
- data/test/stripe/exchange_rate_test.rb +0 -20
- data/test/stripe/file_link_test.rb +0 -41
- data/test/stripe/file_test.rb +0 -97
- data/test/stripe/file_upload_test.rb +0 -79
- data/test/stripe/invoice_item_test.rb +0 -66
- data/test/stripe/invoice_line_item_test.rb +0 -8
- data/test/stripe/invoice_test.rb +0 -213
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/issuing/authorization_test.rb +0 -72
- data/test/stripe/issuing/card_test.rb +0 -62
- data/test/stripe/issuing/cardholder_test.rb +0 -53
- data/test/stripe/issuing/dispute_test.rb +0 -45
- data/test/stripe/issuing/transaction_test.rb +0 -48
- data/test/stripe/list_object_test.rb +0 -156
- data/test/stripe/login_link_test.rb +0 -37
- data/test/stripe/oauth_test.rb +0 -88
- data/test/stripe/order_return_test.rb +0 -21
- data/test/stripe/order_test.rb +0 -75
- data/test/stripe/payment_intent_test.rb +0 -107
- data/test/stripe/payment_method_test.rb +0 -84
- data/test/stripe/payout_test.rb +0 -57
- data/test/stripe/person_test.rb +0 -46
- data/test/stripe/plan_test.rb +0 -98
- data/test/stripe/product_test.rb +0 -59
- data/test/stripe/radar/value_list_item_test.rb +0 -48
- data/test/stripe/radar/value_list_test.rb +0 -61
- data/test/stripe/recipient_test.rb +0 -62
- data/test/stripe/refund_test.rb +0 -39
- data/test/stripe/reporting/report_run_test.rb +0 -33
- data/test/stripe/reporting/report_type_test.rb +0 -22
- data/test/stripe/reversal_test.rb +0 -43
- data/test/stripe/review_test.rb +0 -27
- data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
- data/test/stripe/sku_test.rb +0 -60
- data/test/stripe/source_test.rb +0 -99
- data/test/stripe/source_transaction_test.rb +0 -19
- data/test/stripe/stripe_client_test.rb +0 -842
- data/test/stripe/stripe_object_test.rb +0 -525
- data/test/stripe/stripe_response_test.rb +0 -49
- data/test/stripe/subscription_item_test.rb +0 -63
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_test.rb +0 -116
- data/test/stripe/subscription_test.rb +0 -80
- data/test/stripe/tax_id_test.rb +0 -31
- data/test/stripe/tax_rate_test.rb +0 -43
- data/test/stripe/terminal/connection_token_test.rb +0 -16
- data/test/stripe/terminal/location_test.rb +0 -68
- data/test/stripe/terminal/reader_test.rb +0 -62
- data/test/stripe/three_d_secure_test.rb +0 -23
- data/test/stripe/topup_test.rb +0 -62
- data/test/stripe/transfer_test.rb +0 -88
- data/test/stripe/usage_record_summary_test.rb +0 -19
- data/test/stripe/usage_record_test.rb +0 -28
- data/test/stripe/util_test.rb +0 -402
- data/test/stripe/webhook_endpoint_test.rb +0 -59
- data/test/stripe/webhook_test.rb +0 -96
- data/test/stripe_mock.rb +0 -77
- data/test/stripe_test.rb +0 -63
- data/test/test_data.rb +0 -61
- data/test/test_helper.rb +0 -73
data/lib/stripe.rb
CHANGED
@@ -3,15 +3,16 @@
|
|
3
3
|
# Stripe Ruby bindings
|
4
4
|
# API spec at https://stripe.com/docs/api
|
5
5
|
require "cgi"
|
6
|
-
require "faraday"
|
7
6
|
require "json"
|
8
7
|
require "logger"
|
8
|
+
require "net/http"
|
9
9
|
require "openssl"
|
10
10
|
require "rbconfig"
|
11
11
|
require "securerandom"
|
12
12
|
require "set"
|
13
13
|
require "socket"
|
14
14
|
require "uri"
|
15
|
+
require "forwardable"
|
15
16
|
|
16
17
|
# Version
|
17
18
|
require "stripe/version"
|
@@ -26,126 +27,66 @@ require "stripe/api_operations/save"
|
|
26
27
|
|
27
28
|
# API resource support classes
|
28
29
|
require "stripe/errors"
|
30
|
+
require "stripe/object_types"
|
29
31
|
require "stripe/util"
|
32
|
+
require "stripe/connection_manager"
|
33
|
+
require "stripe/multipart_encoder"
|
30
34
|
require "stripe/stripe_client"
|
31
35
|
require "stripe/stripe_object"
|
32
36
|
require "stripe/stripe_response"
|
33
37
|
require "stripe/list_object"
|
38
|
+
require "stripe/error_object"
|
34
39
|
require "stripe/api_resource"
|
35
40
|
require "stripe/singleton_api_resource"
|
36
41
|
require "stripe/webhook"
|
42
|
+
require "stripe/stripe_configuration"
|
37
43
|
|
38
44
|
# Named API resources
|
39
|
-
require "stripe/
|
40
|
-
require "stripe/account_link"
|
41
|
-
require "stripe/alipay_account"
|
42
|
-
require "stripe/apple_pay_domain"
|
43
|
-
require "stripe/application_fee"
|
44
|
-
require "stripe/application_fee_refund"
|
45
|
-
require "stripe/balance"
|
46
|
-
require "stripe/balance_transaction"
|
47
|
-
require "stripe/bank_account"
|
48
|
-
require "stripe/bitcoin_receiver"
|
49
|
-
require "stripe/bitcoin_transaction"
|
50
|
-
require "stripe/capability"
|
51
|
-
require "stripe/card"
|
52
|
-
require "stripe/charge"
|
53
|
-
require "stripe/checkout/session"
|
54
|
-
require "stripe/country_spec"
|
55
|
-
require "stripe/coupon"
|
56
|
-
require "stripe/credit_note"
|
57
|
-
require "stripe/customer"
|
58
|
-
require "stripe/discount"
|
59
|
-
require "stripe/dispute"
|
60
|
-
require "stripe/ephemeral_key"
|
61
|
-
require "stripe/event"
|
62
|
-
require "stripe/exchange_rate"
|
63
|
-
require "stripe/file"
|
64
|
-
require "stripe/file_link"
|
65
|
-
require "stripe/invoice"
|
66
|
-
require "stripe/invoice_item"
|
67
|
-
require "stripe/invoice_line_item"
|
68
|
-
require "stripe/issuer_fraud_record"
|
69
|
-
require "stripe/issuing/authorization"
|
70
|
-
require "stripe/issuing/card"
|
71
|
-
require "stripe/issuing/card_details"
|
72
|
-
require "stripe/issuing/cardholder"
|
73
|
-
require "stripe/issuing/dispute"
|
74
|
-
require "stripe/issuing/transaction"
|
75
|
-
require "stripe/login_link"
|
76
|
-
require "stripe/order"
|
77
|
-
require "stripe/order_return"
|
78
|
-
require "stripe/payment_intent"
|
79
|
-
require "stripe/payment_method"
|
80
|
-
require "stripe/payout"
|
81
|
-
require "stripe/person"
|
82
|
-
require "stripe/plan"
|
83
|
-
require "stripe/product"
|
84
|
-
require "stripe/radar/value_list"
|
85
|
-
require "stripe/radar/value_list_item"
|
86
|
-
require "stripe/recipient"
|
87
|
-
require "stripe/recipient_transfer"
|
88
|
-
require "stripe/refund"
|
89
|
-
require "stripe/reporting/report_run"
|
90
|
-
require "stripe/reporting/report_type"
|
91
|
-
require "stripe/reversal"
|
92
|
-
require "stripe/review"
|
93
|
-
require "stripe/sigma/scheduled_query_run"
|
94
|
-
require "stripe/sku"
|
95
|
-
require "stripe/source"
|
96
|
-
require "stripe/source_transaction"
|
97
|
-
require "stripe/subscription"
|
98
|
-
require "stripe/subscription_item"
|
99
|
-
require "stripe/subscription_schedule"
|
100
|
-
require "stripe/subscription_schedule_revision"
|
101
|
-
require "stripe/tax_id"
|
102
|
-
require "stripe/tax_rate"
|
103
|
-
require "stripe/terminal/connection_token"
|
104
|
-
require "stripe/terminal/location"
|
105
|
-
require "stripe/terminal/reader"
|
106
|
-
require "stripe/three_d_secure"
|
107
|
-
require "stripe/token"
|
108
|
-
require "stripe/topup"
|
109
|
-
require "stripe/transfer"
|
110
|
-
require "stripe/usage_record"
|
111
|
-
require "stripe/usage_record_summary"
|
112
|
-
require "stripe/webhook_endpoint"
|
45
|
+
require "stripe/resources"
|
113
46
|
|
114
47
|
# OAuth
|
115
48
|
require "stripe/oauth"
|
116
49
|
|
117
50
|
module Stripe
|
118
|
-
DEFAULT_CA_BUNDLE_PATH =
|
51
|
+
DEFAULT_CA_BUNDLE_PATH = __dir__ + "/data/ca-certificates.crt"
|
119
52
|
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
@uploads_base = "https://files.stripe.com"
|
125
|
-
|
126
|
-
@log_level = nil
|
127
|
-
@logger = nil
|
128
|
-
|
129
|
-
@proxy = nil
|
130
|
-
|
131
|
-
@max_network_retries = 0
|
132
|
-
@max_network_retry_delay = 2
|
133
|
-
@initial_network_retry_delay = 0.5
|
134
|
-
|
135
|
-
@ca_bundle_path = DEFAULT_CA_BUNDLE_PATH
|
136
|
-
@ca_store = nil
|
137
|
-
@verify_ssl_certs = true
|
53
|
+
# map to the same values as the standard library's logger
|
54
|
+
LEVEL_DEBUG = Logger::DEBUG
|
55
|
+
LEVEL_ERROR = Logger::ERROR
|
56
|
+
LEVEL_INFO = Logger::INFO
|
138
57
|
|
139
|
-
@
|
140
|
-
@read_timeout = 80
|
58
|
+
@app_info = nil
|
141
59
|
|
142
|
-
@
|
60
|
+
@config = Stripe::StripeConfiguration.setup
|
143
61
|
|
144
62
|
class << self
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
63
|
+
extend Forwardable
|
64
|
+
|
65
|
+
attr_reader :config
|
66
|
+
|
67
|
+
# User configurable options
|
68
|
+
def_delegators :@config, :api_key, :api_key=
|
69
|
+
def_delegators :@config, :api_version, :api_version=
|
70
|
+
def_delegators :@config, :stripe_account, :stripe_account=
|
71
|
+
def_delegators :@config, :api_base, :api_base=
|
72
|
+
def_delegators :@config, :uploads_base, :uploads_base=
|
73
|
+
def_delegators :@config, :connect_base, :connect_base=
|
74
|
+
def_delegators :@config, :open_timeout, :open_timeout=
|
75
|
+
def_delegators :@config, :read_timeout, :read_timeout=
|
76
|
+
def_delegators :@config, :write_timeout, :write_timeout=
|
77
|
+
def_delegators :@config, :proxy, :proxy=
|
78
|
+
def_delegators :@config, :verify_ssl_certs, :verify_ssl_certs=
|
79
|
+
def_delegators :@config, :ca_bundle_path, :ca_bundle_path=
|
80
|
+
def_delegators :@config, :log_level, :log_level=
|
81
|
+
def_delegators :@config, :logger, :logger=
|
82
|
+
def_delegators :@config, :max_network_retries, :max_network_retries=
|
83
|
+
def_delegators :@config, :enable_telemetry=, :enable_telemetry?
|
84
|
+
def_delegators :@config, :client_id=, :client_id
|
85
|
+
|
86
|
+
# Internal configurations
|
87
|
+
def_delegators :@config, :max_network_retry_delay
|
88
|
+
def_delegators :@config, :initial_network_retry_delay
|
89
|
+
def_delegators :@config, :ca_store
|
149
90
|
end
|
150
91
|
|
151
92
|
# Gets the application for a plugin that's identified some. See
|
@@ -158,98 +99,6 @@ module Stripe
|
|
158
99
|
@app_info = info
|
159
100
|
end
|
160
101
|
|
161
|
-
# The location of a file containing a bundle of CA certificates. By default
|
162
|
-
# the library will use an included bundle that can successfully validate
|
163
|
-
# Stripe certificates.
|
164
|
-
def self.ca_bundle_path
|
165
|
-
@ca_bundle_path
|
166
|
-
end
|
167
|
-
|
168
|
-
def self.ca_bundle_path=(path)
|
169
|
-
@ca_bundle_path = path
|
170
|
-
|
171
|
-
# empty this field so a new store is initialized
|
172
|
-
@ca_store = nil
|
173
|
-
end
|
174
|
-
|
175
|
-
# A certificate store initialized from the the bundle in #ca_bundle_path and
|
176
|
-
# which is used to validate TLS on every request.
|
177
|
-
#
|
178
|
-
# This was added to the give the gem "pseudo thread safety" in that it seems
|
179
|
-
# when initiating many parallel requests marshaling the certificate store is
|
180
|
-
# the most likely point of failure (see issue #382). Any program attempting
|
181
|
-
# to leverage this pseudo safety should make a call to this method (i.e.
|
182
|
-
# `Stripe.ca_store`) in their initialization code because it marshals lazily
|
183
|
-
# and is itself not thread safe.
|
184
|
-
def self.ca_store
|
185
|
-
@ca_store ||= begin
|
186
|
-
store = OpenSSL::X509::Store.new
|
187
|
-
store.add_file(ca_bundle_path)
|
188
|
-
store
|
189
|
-
end
|
190
|
-
end
|
191
|
-
|
192
|
-
# map to the same values as the standard library's logger
|
193
|
-
LEVEL_DEBUG = Logger::DEBUG
|
194
|
-
LEVEL_ERROR = Logger::ERROR
|
195
|
-
LEVEL_INFO = Logger::INFO
|
196
|
-
|
197
|
-
# When set prompts the library to log some extra information to $stdout and
|
198
|
-
# $stderr about what it's doing. For example, it'll produce information about
|
199
|
-
# requests, responses, and errors that are received. Valid log levels are
|
200
|
-
# `debug` and `info`, with `debug` being a little more verbose in places.
|
201
|
-
#
|
202
|
-
# Use of this configuration is only useful when `.logger` is _not_ set. When
|
203
|
-
# it is, the decision what levels to print is entirely deferred to the logger.
|
204
|
-
def self.log_level
|
205
|
-
@log_level
|
206
|
-
end
|
207
|
-
|
208
|
-
def self.log_level=(val)
|
209
|
-
# Backwards compatibility for values that we briefly allowed
|
210
|
-
if val == "debug"
|
211
|
-
val = LEVEL_DEBUG
|
212
|
-
elsif val == "info"
|
213
|
-
val = LEVEL_INFO
|
214
|
-
end
|
215
|
-
|
216
|
-
if !val.nil? && ![LEVEL_DEBUG, LEVEL_ERROR, LEVEL_INFO].include?(val)
|
217
|
-
raise ArgumentError, "log_level should only be set to `nil`, `debug` or `info`"
|
218
|
-
end
|
219
|
-
@log_level = val
|
220
|
-
end
|
221
|
-
|
222
|
-
# Sets a logger to which logging output will be sent. The logger should
|
223
|
-
# support the same interface as the `Logger` class that's part of Ruby's
|
224
|
-
# standard library (hint, anything in `Rails.logger` will likely be
|
225
|
-
# suitable).
|
226
|
-
#
|
227
|
-
# If `.logger` is set, the value of `.log_level` is ignored. The decision on
|
228
|
-
# what levels to print is entirely deferred to the logger.
|
229
|
-
def self.logger
|
230
|
-
@logger
|
231
|
-
end
|
232
|
-
|
233
|
-
def self.logger=(val)
|
234
|
-
@logger = val
|
235
|
-
end
|
236
|
-
|
237
|
-
def self.max_network_retries
|
238
|
-
@max_network_retries
|
239
|
-
end
|
240
|
-
|
241
|
-
def self.max_network_retries=(val)
|
242
|
-
@max_network_retries = val.to_i
|
243
|
-
end
|
244
|
-
|
245
|
-
def self.enable_telemetry?
|
246
|
-
@enable_telemetry
|
247
|
-
end
|
248
|
-
|
249
|
-
def self.enable_telemetry=(val)
|
250
|
-
@enable_telemetry = val
|
251
|
-
end
|
252
|
-
|
253
102
|
# Sets some basic information about the running application that's sent along
|
254
103
|
# with API requests. Useful for plugin authors to identify their plugin when
|
255
104
|
# communicating with Stripe.
|
@@ -263,16 +112,6 @@ module Stripe
|
|
263
112
|
version: version,
|
264
113
|
}
|
265
114
|
end
|
266
|
-
|
267
|
-
# DEPRECATED. Use `Util#encode_parameters` instead.
|
268
|
-
def self.uri_encode(params)
|
269
|
-
Util.encode_parameters(params)
|
270
|
-
end
|
271
|
-
private_class_method :uri_encode
|
272
|
-
class << self
|
273
|
-
extend Gem::Deprecate
|
274
|
-
deprecate :uri_encode, "Stripe::Util#encode_parameters", 2016, 1
|
275
|
-
end
|
276
115
|
end
|
277
116
|
|
278
117
|
Stripe.log_level = ENV["STRIPE_LOG"] unless ENV["STRIPE_LOG"].nil?
|
data/stripe.gemspec
CHANGED
@@ -7,19 +7,35 @@ require "stripe/version"
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "stripe"
|
9
9
|
s.version = Stripe::VERSION
|
10
|
-
s.required_ruby_version = ">= 2.
|
10
|
+
s.required_ruby_version = ">= 2.3.0"
|
11
11
|
s.summary = "Ruby bindings for the Stripe API"
|
12
|
-
s.description = "Stripe is the easiest way to accept payments online.
|
12
|
+
s.description = "Stripe is the easiest way to accept payments online. " \
|
13
|
+
"See https://stripe.com for details."
|
13
14
|
s.author = "Stripe"
|
14
15
|
s.email = "support@stripe.com"
|
15
16
|
s.homepage = "https://stripe.com/docs/api/ruby"
|
16
17
|
s.license = "MIT"
|
17
18
|
|
18
|
-
s.
|
19
|
-
|
19
|
+
s.metadata = {
|
20
|
+
"bug_tracker_uri" => "https://github.com/stripe/stripe-ruby/issues",
|
21
|
+
"changelog_uri" =>
|
22
|
+
"https://github.com/stripe/stripe-ruby/blob/master/CHANGELOG.md",
|
23
|
+
"documentation_uri" => "https://stripe.com/docs/api/ruby",
|
24
|
+
"github_repo" => "ssh://github.com/stripe/stripe-ruby",
|
25
|
+
"homepage_uri" => "https://stripe.com/docs/api/ruby",
|
26
|
+
"source_code_uri" => "https://github.com/stripe/stripe-ruby",
|
27
|
+
}
|
20
28
|
|
21
|
-
|
22
|
-
|
23
|
-
|
29
|
+
ignored = Regexp.union(
|
30
|
+
%r{\A\.editorconfig},
|
31
|
+
%r{\A\.git},
|
32
|
+
%r{\A\.rubocop},
|
33
|
+
%r{\A\.travis.yml},
|
34
|
+
%r{\A\.vscode},
|
35
|
+
%r{\Atest/}
|
36
|
+
)
|
37
|
+
s.files = `git ls-files`.split("\n").reject { |f| ignored.match?(f) }
|
38
|
+
s.executables = `git ls-files -- bin/*`.split("\n")
|
39
|
+
.map { |f| ::File.basename(f) }
|
24
40
|
s.require_paths = ["lib"]
|
25
41
|
end
|
metadata
CHANGED
@@ -1,43 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: faraday
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0.13'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0.13'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: net-http-persistent
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '3.0'
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '3.0'
|
11
|
+
date: 2021-04-05 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
41
13
|
description: Stripe is the easiest way to accept payments online. See https://stripe.com
|
42
14
|
for details.
|
43
15
|
email: support@stripe.com
|
@@ -46,13 +18,8 @@ executables:
|
|
46
18
|
extensions: []
|
47
19
|
extra_rdoc_files: []
|
48
20
|
files:
|
49
|
-
- ".gitattributes"
|
50
|
-
- ".github/ISSUE_TEMPLATE.md"
|
51
|
-
- ".gitignore"
|
52
|
-
- ".rubocop.yml"
|
53
|
-
- ".rubocop_todo.yml"
|
54
|
-
- ".travis.yml"
|
55
21
|
- CHANGELOG.md
|
22
|
+
- CODE_OF_CONDUCT.md
|
56
23
|
- CONTRIBUTORS
|
57
24
|
- Gemfile
|
58
25
|
- History.txt
|
@@ -63,9 +30,6 @@ files:
|
|
63
30
|
- bin/stripe-console
|
64
31
|
- lib/data/ca-certificates.crt
|
65
32
|
- lib/stripe.rb
|
66
|
-
- lib/stripe/account.rb
|
67
|
-
- lib/stripe/account_link.rb
|
68
|
-
- lib/stripe/alipay_account.rb
|
69
33
|
- lib/stripe/api_operations/create.rb
|
70
34
|
- lib/stripe/api_operations/delete.rb
|
71
35
|
- lib/stripe/api_operations/list.rb
|
@@ -73,176 +37,118 @@ files:
|
|
73
37
|
- lib/stripe/api_operations/request.rb
|
74
38
|
- lib/stripe/api_operations/save.rb
|
75
39
|
- lib/stripe/api_resource.rb
|
76
|
-
- lib/stripe/
|
77
|
-
- lib/stripe/
|
78
|
-
- lib/stripe/application_fee_refund.rb
|
79
|
-
- lib/stripe/balance.rb
|
80
|
-
- lib/stripe/balance_transaction.rb
|
81
|
-
- lib/stripe/bank_account.rb
|
82
|
-
- lib/stripe/bitcoin_receiver.rb
|
83
|
-
- lib/stripe/bitcoin_transaction.rb
|
84
|
-
- lib/stripe/capability.rb
|
85
|
-
- lib/stripe/card.rb
|
86
|
-
- lib/stripe/charge.rb
|
87
|
-
- lib/stripe/checkout/session.rb
|
88
|
-
- lib/stripe/country_spec.rb
|
89
|
-
- lib/stripe/coupon.rb
|
90
|
-
- lib/stripe/credit_note.rb
|
91
|
-
- lib/stripe/customer.rb
|
92
|
-
- lib/stripe/discount.rb
|
93
|
-
- lib/stripe/dispute.rb
|
94
|
-
- lib/stripe/ephemeral_key.rb
|
40
|
+
- lib/stripe/connection_manager.rb
|
41
|
+
- lib/stripe/error_object.rb
|
95
42
|
- lib/stripe/errors.rb
|
96
|
-
- lib/stripe/
|
97
|
-
- lib/stripe/exchange_rate.rb
|
98
|
-
- lib/stripe/file.rb
|
99
|
-
- lib/stripe/file_link.rb
|
100
|
-
- lib/stripe/invoice.rb
|
101
|
-
- lib/stripe/invoice_item.rb
|
102
|
-
- lib/stripe/invoice_line_item.rb
|
103
|
-
- lib/stripe/issuer_fraud_record.rb
|
104
|
-
- lib/stripe/issuing/authorization.rb
|
105
|
-
- lib/stripe/issuing/card.rb
|
106
|
-
- lib/stripe/issuing/card_details.rb
|
107
|
-
- lib/stripe/issuing/cardholder.rb
|
108
|
-
- lib/stripe/issuing/dispute.rb
|
109
|
-
- lib/stripe/issuing/transaction.rb
|
43
|
+
- lib/stripe/instrumentation.rb
|
110
44
|
- lib/stripe/list_object.rb
|
111
|
-
- lib/stripe/
|
45
|
+
- lib/stripe/multipart_encoder.rb
|
112
46
|
- lib/stripe/oauth.rb
|
113
|
-
- lib/stripe/
|
114
|
-
- lib/stripe/
|
115
|
-
- lib/stripe/
|
116
|
-
- lib/stripe/
|
117
|
-
- lib/stripe/
|
118
|
-
- lib/stripe/
|
119
|
-
- lib/stripe/
|
120
|
-
- lib/stripe/
|
121
|
-
- lib/stripe/
|
122
|
-
- lib/stripe/
|
123
|
-
- lib/stripe/
|
124
|
-
- lib/stripe/
|
125
|
-
- lib/stripe/
|
126
|
-
- lib/stripe/
|
127
|
-
- lib/stripe/
|
128
|
-
- lib/stripe/
|
129
|
-
- lib/stripe/
|
130
|
-
- lib/stripe/
|
47
|
+
- lib/stripe/object_types.rb
|
48
|
+
- lib/stripe/resources.rb
|
49
|
+
- lib/stripe/resources/account.rb
|
50
|
+
- lib/stripe/resources/account_link.rb
|
51
|
+
- lib/stripe/resources/alipay_account.rb
|
52
|
+
- lib/stripe/resources/apple_pay_domain.rb
|
53
|
+
- lib/stripe/resources/application_fee.rb
|
54
|
+
- lib/stripe/resources/application_fee_refund.rb
|
55
|
+
- lib/stripe/resources/balance.rb
|
56
|
+
- lib/stripe/resources/balance_transaction.rb
|
57
|
+
- lib/stripe/resources/bank_account.rb
|
58
|
+
- lib/stripe/resources/billing_portal/configuration.rb
|
59
|
+
- lib/stripe/resources/billing_portal/session.rb
|
60
|
+
- lib/stripe/resources/bitcoin_receiver.rb
|
61
|
+
- lib/stripe/resources/bitcoin_transaction.rb
|
62
|
+
- lib/stripe/resources/capability.rb
|
63
|
+
- lib/stripe/resources/card.rb
|
64
|
+
- lib/stripe/resources/charge.rb
|
65
|
+
- lib/stripe/resources/checkout/session.rb
|
66
|
+
- lib/stripe/resources/country_spec.rb
|
67
|
+
- lib/stripe/resources/coupon.rb
|
68
|
+
- lib/stripe/resources/credit_note.rb
|
69
|
+
- lib/stripe/resources/credit_note_line_item.rb
|
70
|
+
- lib/stripe/resources/customer.rb
|
71
|
+
- lib/stripe/resources/customer_balance_transaction.rb
|
72
|
+
- lib/stripe/resources/discount.rb
|
73
|
+
- lib/stripe/resources/dispute.rb
|
74
|
+
- lib/stripe/resources/ephemeral_key.rb
|
75
|
+
- lib/stripe/resources/event.rb
|
76
|
+
- lib/stripe/resources/exchange_rate.rb
|
77
|
+
- lib/stripe/resources/file.rb
|
78
|
+
- lib/stripe/resources/file_link.rb
|
79
|
+
- lib/stripe/resources/invoice.rb
|
80
|
+
- lib/stripe/resources/invoice_item.rb
|
81
|
+
- lib/stripe/resources/invoice_line_item.rb
|
82
|
+
- lib/stripe/resources/issuing/authorization.rb
|
83
|
+
- lib/stripe/resources/issuing/card.rb
|
84
|
+
- lib/stripe/resources/issuing/card_details.rb
|
85
|
+
- lib/stripe/resources/issuing/cardholder.rb
|
86
|
+
- lib/stripe/resources/issuing/dispute.rb
|
87
|
+
- lib/stripe/resources/issuing/transaction.rb
|
88
|
+
- lib/stripe/resources/line_item.rb
|
89
|
+
- lib/stripe/resources/login_link.rb
|
90
|
+
- lib/stripe/resources/mandate.rb
|
91
|
+
- lib/stripe/resources/order.rb
|
92
|
+
- lib/stripe/resources/order_return.rb
|
93
|
+
- lib/stripe/resources/payment_intent.rb
|
94
|
+
- lib/stripe/resources/payment_method.rb
|
95
|
+
- lib/stripe/resources/payout.rb
|
96
|
+
- lib/stripe/resources/person.rb
|
97
|
+
- lib/stripe/resources/plan.rb
|
98
|
+
- lib/stripe/resources/price.rb
|
99
|
+
- lib/stripe/resources/product.rb
|
100
|
+
- lib/stripe/resources/promotion_code.rb
|
101
|
+
- lib/stripe/resources/radar/early_fraud_warning.rb
|
102
|
+
- lib/stripe/resources/radar/value_list.rb
|
103
|
+
- lib/stripe/resources/radar/value_list_item.rb
|
104
|
+
- lib/stripe/resources/recipient.rb
|
105
|
+
- lib/stripe/resources/recipient_transfer.rb
|
106
|
+
- lib/stripe/resources/refund.rb
|
107
|
+
- lib/stripe/resources/reporting/report_run.rb
|
108
|
+
- lib/stripe/resources/reporting/report_type.rb
|
109
|
+
- lib/stripe/resources/reversal.rb
|
110
|
+
- lib/stripe/resources/review.rb
|
111
|
+
- lib/stripe/resources/setup_attempt.rb
|
112
|
+
- lib/stripe/resources/setup_intent.rb
|
113
|
+
- lib/stripe/resources/sigma/scheduled_query_run.rb
|
114
|
+
- lib/stripe/resources/sku.rb
|
115
|
+
- lib/stripe/resources/source.rb
|
116
|
+
- lib/stripe/resources/source_transaction.rb
|
117
|
+
- lib/stripe/resources/subscription.rb
|
118
|
+
- lib/stripe/resources/subscription_item.rb
|
119
|
+
- lib/stripe/resources/subscription_schedule.rb
|
120
|
+
- lib/stripe/resources/tax_id.rb
|
121
|
+
- lib/stripe/resources/tax_rate.rb
|
122
|
+
- lib/stripe/resources/terminal/connection_token.rb
|
123
|
+
- lib/stripe/resources/terminal/location.rb
|
124
|
+
- lib/stripe/resources/terminal/reader.rb
|
125
|
+
- lib/stripe/resources/three_d_secure.rb
|
126
|
+
- lib/stripe/resources/token.rb
|
127
|
+
- lib/stripe/resources/topup.rb
|
128
|
+
- lib/stripe/resources/transfer.rb
|
129
|
+
- lib/stripe/resources/usage_record.rb
|
130
|
+
- lib/stripe/resources/usage_record_summary.rb
|
131
|
+
- lib/stripe/resources/webhook_endpoint.rb
|
131
132
|
- lib/stripe/singleton_api_resource.rb
|
132
|
-
- lib/stripe/sku.rb
|
133
|
-
- lib/stripe/source.rb
|
134
|
-
- lib/stripe/source_transaction.rb
|
135
133
|
- lib/stripe/stripe_client.rb
|
134
|
+
- lib/stripe/stripe_configuration.rb
|
136
135
|
- lib/stripe/stripe_object.rb
|
137
136
|
- lib/stripe/stripe_response.rb
|
138
|
-
- lib/stripe/subscription.rb
|
139
|
-
- lib/stripe/subscription_item.rb
|
140
|
-
- lib/stripe/subscription_schedule.rb
|
141
|
-
- lib/stripe/subscription_schedule_revision.rb
|
142
|
-
- lib/stripe/tax_id.rb
|
143
|
-
- lib/stripe/tax_rate.rb
|
144
|
-
- lib/stripe/terminal/connection_token.rb
|
145
|
-
- lib/stripe/terminal/location.rb
|
146
|
-
- lib/stripe/terminal/reader.rb
|
147
|
-
- lib/stripe/three_d_secure.rb
|
148
|
-
- lib/stripe/token.rb
|
149
|
-
- lib/stripe/topup.rb
|
150
|
-
- lib/stripe/transfer.rb
|
151
|
-
- lib/stripe/usage_record.rb
|
152
|
-
- lib/stripe/usage_record_summary.rb
|
153
137
|
- lib/stripe/util.rb
|
154
138
|
- lib/stripe/version.rb
|
155
139
|
- lib/stripe/webhook.rb
|
156
|
-
- lib/stripe/webhook_endpoint.rb
|
157
140
|
- stripe.gemspec
|
158
|
-
- test/api_stub_helpers.rb
|
159
|
-
- test/openapi/README.md
|
160
|
-
- test/stripe/account_link_test.rb
|
161
|
-
- test/stripe/account_test.rb
|
162
|
-
- test/stripe/alipay_account_test.rb
|
163
|
-
- test/stripe/api_operations_test.rb
|
164
|
-
- test/stripe/api_resource_test.rb
|
165
|
-
- test/stripe/apple_pay_domain_test.rb
|
166
|
-
- test/stripe/application_fee_refund_test.rb
|
167
|
-
- test/stripe/application_fee_test.rb
|
168
|
-
- test/stripe/balance_test.rb
|
169
|
-
- test/stripe/bank_account_test.rb
|
170
|
-
- test/stripe/capability_test.rb
|
171
|
-
- test/stripe/charge_test.rb
|
172
|
-
- test/stripe/checkout/session_test.rb
|
173
|
-
- test/stripe/country_spec_test.rb
|
174
|
-
- test/stripe/coupon_test.rb
|
175
|
-
- test/stripe/credit_note_test.rb
|
176
|
-
- test/stripe/customer_card_test.rb
|
177
|
-
- test/stripe/customer_test.rb
|
178
|
-
- test/stripe/dispute_test.rb
|
179
|
-
- test/stripe/ephemeral_key_test.rb
|
180
|
-
- test/stripe/errors_test.rb
|
181
|
-
- test/stripe/exchange_rate_test.rb
|
182
|
-
- test/stripe/file_link_test.rb
|
183
|
-
- test/stripe/file_test.rb
|
184
|
-
- test/stripe/file_upload_test.rb
|
185
|
-
- test/stripe/invoice_item_test.rb
|
186
|
-
- test/stripe/invoice_line_item_test.rb
|
187
|
-
- test/stripe/invoice_test.rb
|
188
|
-
- test/stripe/issuer_fraud_record_test.rb
|
189
|
-
- test/stripe/issuing/authorization_test.rb
|
190
|
-
- test/stripe/issuing/card_test.rb
|
191
|
-
- test/stripe/issuing/cardholder_test.rb
|
192
|
-
- test/stripe/issuing/dispute_test.rb
|
193
|
-
- test/stripe/issuing/transaction_test.rb
|
194
|
-
- test/stripe/list_object_test.rb
|
195
|
-
- test/stripe/login_link_test.rb
|
196
|
-
- test/stripe/oauth_test.rb
|
197
|
-
- test/stripe/order_return_test.rb
|
198
|
-
- test/stripe/order_test.rb
|
199
|
-
- test/stripe/payment_intent_test.rb
|
200
|
-
- test/stripe/payment_method_test.rb
|
201
|
-
- test/stripe/payout_test.rb
|
202
|
-
- test/stripe/person_test.rb
|
203
|
-
- test/stripe/plan_test.rb
|
204
|
-
- test/stripe/product_test.rb
|
205
|
-
- test/stripe/radar/value_list_item_test.rb
|
206
|
-
- test/stripe/radar/value_list_test.rb
|
207
|
-
- test/stripe/recipient_test.rb
|
208
|
-
- test/stripe/refund_test.rb
|
209
|
-
- test/stripe/reporting/report_run_test.rb
|
210
|
-
- test/stripe/reporting/report_type_test.rb
|
211
|
-
- test/stripe/reversal_test.rb
|
212
|
-
- test/stripe/review_test.rb
|
213
|
-
- test/stripe/sigma/scheduled_query_run_test.rb
|
214
|
-
- test/stripe/sku_test.rb
|
215
|
-
- test/stripe/source_test.rb
|
216
|
-
- test/stripe/source_transaction_test.rb
|
217
|
-
- test/stripe/stripe_client_test.rb
|
218
|
-
- test/stripe/stripe_object_test.rb
|
219
|
-
- test/stripe/stripe_response_test.rb
|
220
|
-
- test/stripe/subscription_item_test.rb
|
221
|
-
- test/stripe/subscription_schedule_revision_test.rb
|
222
|
-
- test/stripe/subscription_schedule_test.rb
|
223
|
-
- test/stripe/subscription_test.rb
|
224
|
-
- test/stripe/tax_id_test.rb
|
225
|
-
- test/stripe/tax_rate_test.rb
|
226
|
-
- test/stripe/terminal/connection_token_test.rb
|
227
|
-
- test/stripe/terminal/location_test.rb
|
228
|
-
- test/stripe/terminal/reader_test.rb
|
229
|
-
- test/stripe/three_d_secure_test.rb
|
230
|
-
- test/stripe/topup_test.rb
|
231
|
-
- test/stripe/transfer_test.rb
|
232
|
-
- test/stripe/usage_record_summary_test.rb
|
233
|
-
- test/stripe/usage_record_test.rb
|
234
|
-
- test/stripe/util_test.rb
|
235
|
-
- test/stripe/webhook_endpoint_test.rb
|
236
|
-
- test/stripe/webhook_test.rb
|
237
|
-
- test/stripe_mock.rb
|
238
|
-
- test/stripe_test.rb
|
239
|
-
- test/test_data.rb
|
240
|
-
- test/test_helper.rb
|
241
141
|
homepage: https://stripe.com/docs/api/ruby
|
242
142
|
licenses:
|
243
143
|
- MIT
|
244
|
-
metadata:
|
245
|
-
|
144
|
+
metadata:
|
145
|
+
bug_tracker_uri: https://github.com/stripe/stripe-ruby/issues
|
146
|
+
changelog_uri: https://github.com/stripe/stripe-ruby/blob/master/CHANGELOG.md
|
147
|
+
documentation_uri: https://stripe.com/docs/api/ruby
|
148
|
+
github_repo: ssh://github.com/stripe/stripe-ruby
|
149
|
+
homepage_uri: https://stripe.com/docs/api/ruby
|
150
|
+
source_code_uri: https://github.com/stripe/stripe-ruby
|
151
|
+
post_install_message:
|
246
152
|
rdoc_options: []
|
247
153
|
require_paths:
|
248
154
|
- lib
|
@@ -250,98 +156,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
250
156
|
requirements:
|
251
157
|
- - ">="
|
252
158
|
- !ruby/object:Gem::Version
|
253
|
-
version: 2.
|
159
|
+
version: 2.3.0
|
254
160
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
255
161
|
requirements:
|
256
162
|
- - ">="
|
257
163
|
- !ruby/object:Gem::Version
|
258
164
|
version: '0'
|
259
165
|
requirements: []
|
260
|
-
rubygems_version: 3.
|
261
|
-
signing_key:
|
166
|
+
rubygems_version: 3.1.2
|
167
|
+
signing_key:
|
262
168
|
specification_version: 4
|
263
169
|
summary: Ruby bindings for the Stripe API
|
264
|
-
test_files:
|
265
|
-
- test/api_stub_helpers.rb
|
266
|
-
- test/openapi/README.md
|
267
|
-
- test/stripe/account_link_test.rb
|
268
|
-
- test/stripe/account_test.rb
|
269
|
-
- test/stripe/alipay_account_test.rb
|
270
|
-
- test/stripe/api_operations_test.rb
|
271
|
-
- test/stripe/api_resource_test.rb
|
272
|
-
- test/stripe/apple_pay_domain_test.rb
|
273
|
-
- test/stripe/application_fee_refund_test.rb
|
274
|
-
- test/stripe/application_fee_test.rb
|
275
|
-
- test/stripe/balance_test.rb
|
276
|
-
- test/stripe/bank_account_test.rb
|
277
|
-
- test/stripe/capability_test.rb
|
278
|
-
- test/stripe/charge_test.rb
|
279
|
-
- test/stripe/checkout/session_test.rb
|
280
|
-
- test/stripe/country_spec_test.rb
|
281
|
-
- test/stripe/coupon_test.rb
|
282
|
-
- test/stripe/credit_note_test.rb
|
283
|
-
- test/stripe/customer_card_test.rb
|
284
|
-
- test/stripe/customer_test.rb
|
285
|
-
- test/stripe/dispute_test.rb
|
286
|
-
- test/stripe/ephemeral_key_test.rb
|
287
|
-
- test/stripe/errors_test.rb
|
288
|
-
- test/stripe/exchange_rate_test.rb
|
289
|
-
- test/stripe/file_link_test.rb
|
290
|
-
- test/stripe/file_test.rb
|
291
|
-
- test/stripe/file_upload_test.rb
|
292
|
-
- test/stripe/invoice_item_test.rb
|
293
|
-
- test/stripe/invoice_line_item_test.rb
|
294
|
-
- test/stripe/invoice_test.rb
|
295
|
-
- test/stripe/issuer_fraud_record_test.rb
|
296
|
-
- test/stripe/issuing/authorization_test.rb
|
297
|
-
- test/stripe/issuing/card_test.rb
|
298
|
-
- test/stripe/issuing/cardholder_test.rb
|
299
|
-
- test/stripe/issuing/dispute_test.rb
|
300
|
-
- test/stripe/issuing/transaction_test.rb
|
301
|
-
- test/stripe/list_object_test.rb
|
302
|
-
- test/stripe/login_link_test.rb
|
303
|
-
- test/stripe/oauth_test.rb
|
304
|
-
- test/stripe/order_return_test.rb
|
305
|
-
- test/stripe/order_test.rb
|
306
|
-
- test/stripe/payment_intent_test.rb
|
307
|
-
- test/stripe/payment_method_test.rb
|
308
|
-
- test/stripe/payout_test.rb
|
309
|
-
- test/stripe/person_test.rb
|
310
|
-
- test/stripe/plan_test.rb
|
311
|
-
- test/stripe/product_test.rb
|
312
|
-
- test/stripe/radar/value_list_item_test.rb
|
313
|
-
- test/stripe/radar/value_list_test.rb
|
314
|
-
- test/stripe/recipient_test.rb
|
315
|
-
- test/stripe/refund_test.rb
|
316
|
-
- test/stripe/reporting/report_run_test.rb
|
317
|
-
- test/stripe/reporting/report_type_test.rb
|
318
|
-
- test/stripe/reversal_test.rb
|
319
|
-
- test/stripe/review_test.rb
|
320
|
-
- test/stripe/sigma/scheduled_query_run_test.rb
|
321
|
-
- test/stripe/sku_test.rb
|
322
|
-
- test/stripe/source_test.rb
|
323
|
-
- test/stripe/source_transaction_test.rb
|
324
|
-
- test/stripe/stripe_client_test.rb
|
325
|
-
- test/stripe/stripe_object_test.rb
|
326
|
-
- test/stripe/stripe_response_test.rb
|
327
|
-
- test/stripe/subscription_item_test.rb
|
328
|
-
- test/stripe/subscription_schedule_revision_test.rb
|
329
|
-
- test/stripe/subscription_schedule_test.rb
|
330
|
-
- test/stripe/subscription_test.rb
|
331
|
-
- test/stripe/tax_id_test.rb
|
332
|
-
- test/stripe/tax_rate_test.rb
|
333
|
-
- test/stripe/terminal/connection_token_test.rb
|
334
|
-
- test/stripe/terminal/location_test.rb
|
335
|
-
- test/stripe/terminal/reader_test.rb
|
336
|
-
- test/stripe/three_d_secure_test.rb
|
337
|
-
- test/stripe/topup_test.rb
|
338
|
-
- test/stripe/transfer_test.rb
|
339
|
-
- test/stripe/usage_record_summary_test.rb
|
340
|
-
- test/stripe/usage_record_test.rb
|
341
|
-
- test/stripe/util_test.rb
|
342
|
-
- test/stripe/webhook_endpoint_test.rb
|
343
|
-
- test/stripe/webhook_test.rb
|
344
|
-
- test/stripe_mock.rb
|
345
|
-
- test/stripe_test.rb
|
346
|
-
- test/test_data.rb
|
347
|
-
- test/test_helper.rb
|
170
|
+
test_files: []
|