stripe 3.2.0 → 5.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.editorconfig +10 -0
- data/.gitignore +3 -0
- data/.rubocop.yml +80 -0
- data/.rubocop_todo.yml +33 -0
- data/.travis.yml +9 -7
- data/.vscode/extensions.json +7 -0
- data/.vscode/settings.json +8 -0
- data/CHANGELOG.md +876 -0
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +21 -21
- data/History.txt +1 -678
- data/README.md +195 -53
- data/Rakefile +18 -12
- data/VERSION +1 -1
- data/bin/stripe-console +5 -3
- data/lib/stripe/api_operations/create.rb +3 -1
- data/lib/stripe/api_operations/delete.rb +26 -2
- data/lib/stripe/api_operations/list.rb +3 -12
- data/lib/stripe/api_operations/nested_resource.rb +72 -0
- data/lib/stripe/api_operations/request.rb +33 -15
- data/lib/stripe/api_operations/save.rb +18 -9
- data/lib/stripe/api_resource.rb +60 -10
- data/lib/stripe/connection_manager.rb +159 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +39 -19
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +54 -22
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +22 -14
- data/lib/stripe/object_types.rb +96 -0
- data/lib/stripe/{account.rb → resources/account.rb} +72 -34
- data/lib/stripe/resources/account_link.rb +9 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +4 -2
- data/lib/stripe/resources/application_fee.rb +13 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/{balance.rb → resources/balance.rb} +3 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +3 -5
- data/lib/stripe/resources/bank_account.rb +42 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +6 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +15 -0
- data/lib/stripe/resources/capability.rb +33 -0
- data/lib/stripe/resources/card.rb +37 -0
- data/lib/stripe/resources/charge.rb +22 -0
- data/lib/stripe/resources/checkout/session.rb +12 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +3 -5
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +4 -2
- data/lib/stripe/resources/credit_note.rb +32 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +35 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
- data/lib/stripe/resources/discount.rb +7 -0
- data/lib/stripe/resources/dispute.rb +21 -0
- data/lib/stripe/resources/ephemeral_key.rb +19 -0
- data/lib/stripe/{event.rb → resources/event.rb} +3 -1
- data/lib/stripe/resources/exchange_rate.rb +9 -0
- data/lib/stripe/resources/file.rb +34 -0
- data/lib/stripe/resources/file_link.rb +11 -0
- data/lib/stripe/resources/invoice.rb +73 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +4 -2
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +3 -1
- data/lib/stripe/resources/issuing/authorization.rb +33 -0
- data/lib/stripe/resources/issuing/card.rb +24 -0
- data/lib/stripe/resources/issuing/card_details.rb +9 -0
- data/lib/stripe/resources/issuing/cardholder.rb +13 -0
- data/lib/stripe/resources/issuing/dispute.rb +13 -0
- data/lib/stripe/resources/issuing/transaction.rb +12 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +7 -0
- data/lib/stripe/resources/order.rb +32 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +3 -5
- data/lib/stripe/resources/payment_intent.rb +42 -0
- data/lib/stripe/resources/payment_method.rb +32 -0
- data/lib/stripe/resources/payout.rb +22 -0
- data/lib/stripe/resources/person.rb +31 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +3 -1
- data/lib/stripe/{product.rb → resources/product.rb} +5 -3
- data/lib/stripe/resources/radar/early_fraud_warning.rb +11 -0
- data/lib/stripe/resources/radar/value_list.rb +14 -0
- data/lib/stripe/resources/radar/value_list_item.rb +13 -0
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +5 -6
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/{refund.rb → resources/refund.rb} +3 -1
- data/lib/stripe/resources/reporting/report_run.rb +12 -0
- data/lib/stripe/resources/reporting/report_type.rb +12 -0
- data/lib/stripe/resources/reversal.rb +29 -0
- data/lib/stripe/resources/review.rb +20 -0
- data/lib/stripe/resources/setup_intent.rb +32 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +15 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +5 -3
- data/lib/stripe/resources/source.rb +46 -0
- data/lib/stripe/resources/source_transaction.rb +7 -0
- data/lib/stripe/resources/subscription.rb +25 -0
- data/lib/stripe/resources/subscription_item.rb +25 -0
- data/lib/stripe/resources/subscription_schedule.rb +32 -0
- data/lib/stripe/resources/tax_id.rb +26 -0
- data/lib/stripe/resources/tax_rate.rb +11 -0
- data/lib/stripe/resources/terminal/connection_token.rb +11 -0
- data/lib/stripe/resources/terminal/location.rb +14 -0
- data/lib/stripe/resources/terminal/reader.rb +14 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +3 -1
- data/lib/stripe/{token.rb → resources/token.rb} +3 -1
- data/lib/stripe/resources/topup.rb +22 -0
- data/lib/stripe/resources/transfer.rb +26 -0
- data/lib/stripe/resources/usage_record.rb +7 -0
- data/lib/stripe/resources/usage_record_summary.rb +7 -0
- data/lib/stripe/resources/webhook_endpoint.rb +12 -0
- data/lib/stripe/resources.rb +79 -0
- data/lib/stripe/singleton_api_resource.rb +10 -4
- data/lib/stripe/stripe_client.rb +658 -337
- data/lib/stripe/stripe_object.rb +248 -126
- data/lib/stripe/stripe_response.rb +55 -21
- data/lib/stripe/util.rb +145 -187
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +27 -16
- data/lib/stripe.rb +139 -90
- data/stripe.gemspec +26 -14
- data/test/openapi/README.md +9 -0
- data/test/stripe/account_link_test.rb +18 -0
- data/test/stripe/account_test.rb +311 -101
- data/test/stripe/alipay_account_test.rb +21 -1
- data/test/stripe/api_operations_test.rb +57 -8
- data/test/stripe/api_resource_test.rb +359 -271
- data/test/stripe/apple_pay_domain_test.rb +26 -11
- data/test/stripe/application_fee_refund_test.rb +10 -8
- data/test/stripe/application_fee_test.rb +49 -3
- data/test/stripe/balance_test.rb +4 -2
- data/test/stripe/balance_transaction_test.rb +20 -0
- data/test/stripe/bank_account_test.rb +11 -11
- data/test/stripe/capability_test.rb +45 -0
- data/test/stripe/charge_test.rb +25 -18
- data/test/stripe/checkout/session_test.rb +41 -0
- data/test/stripe/connection_manager_test.rb +163 -0
- data/test/stripe/country_spec_test.rb +6 -4
- data/test/stripe/coupon_test.rb +29 -10
- data/test/stripe/credit_note_test.rb +90 -0
- data/test/stripe/customer_balance_transaction_test.rb +37 -0
- data/test/stripe/customer_card_test.rb +13 -17
- data/test/stripe/customer_test.rb +161 -49
- data/test/stripe/dispute_test.rb +19 -8
- data/test/stripe/ephemeral_key_test.rb +23 -14
- data/test/stripe/errors_test.rb +32 -9
- data/test/stripe/exchange_rate_test.rb +20 -0
- data/test/stripe/file_link_test.rb +41 -0
- data/test/stripe/file_test.rb +87 -0
- data/test/stripe/instrumentation_test.rb +74 -0
- data/test/stripe/invoice_item_test.rb +31 -18
- data/test/stripe/invoice_line_item_test.rb +3 -1
- data/test/stripe/invoice_test.rb +158 -39
- data/test/stripe/issuing/authorization_test.rb +72 -0
- data/test/stripe/issuing/card_test.rb +62 -0
- data/test/stripe/issuing/cardholder_test.rb +53 -0
- data/test/stripe/issuing/dispute_test.rb +45 -0
- data/test/stripe/issuing/transaction_test.rb +48 -0
- data/test/stripe/list_object_test.rb +120 -88
- data/test/stripe/login_link_test.rb +16 -14
- data/test/stripe/mandate_test.rb +14 -0
- data/test/stripe/multipart_encoder_test.rb +130 -0
- data/test/stripe/oauth_test.rb +69 -50
- data/test/stripe/order_return_test.rb +7 -5
- data/test/stripe/order_test.rb +39 -14
- data/test/stripe/payment_intent_test.rb +107 -0
- data/test/stripe/payment_method_test.rb +84 -0
- data/test/stripe/payout_test.rb +18 -9
- data/test/stripe/person_test.rb +46 -0
- data/test/stripe/plan_test.rb +67 -19
- data/test/stripe/product_test.rb +28 -14
- data/test/stripe/radar/early_fraud_warning_test.rb +22 -0
- data/test/stripe/radar/value_list_item_test.rb +48 -0
- data/test/stripe/radar/value_list_test.rb +61 -0
- data/test/stripe/recipient_test.rb +27 -13
- data/test/stripe/refund_test.rb +11 -9
- data/test/stripe/reporting/report_run_test.rb +33 -0
- data/test/stripe/reporting/report_type_test.rb +22 -0
- data/test/stripe/reversal_test.rb +12 -10
- data/test/stripe/review_test.rb +27 -0
- data/test/stripe/setup_intent_test.rb +84 -0
- data/test/stripe/sigma/scheduled_query_run_test.rb +22 -0
- data/test/stripe/sku_test.rb +24 -12
- data/test/stripe/source_test.rb +70 -19
- data/test/stripe/stripe_client_test.rb +867 -326
- data/test/stripe/stripe_object_test.rb +284 -182
- data/test/stripe/stripe_response_test.rb +73 -24
- data/test/stripe/subscription_item_test.rb +47 -15
- data/test/stripe/subscription_schedule_test.rb +82 -0
- data/test/stripe/subscription_test.rb +41 -19
- data/test/stripe/tax_id_test.rb +31 -0
- data/test/stripe/tax_rate_test.rb +43 -0
- data/test/stripe/terminal/connection_token_test.rb +16 -0
- data/test/stripe/terminal/location_test.rb +68 -0
- data/test/stripe/terminal/reader_test.rb +62 -0
- data/test/stripe/three_d_secure_test.rb +4 -2
- data/test/stripe/topup_test.rb +62 -0
- data/test/stripe/transfer_test.rb +55 -8
- data/test/stripe/usage_record_summary_test.rb +29 -0
- data/test/stripe/util_test.rb +173 -84
- data/test/stripe/webhook_endpoint_test.rb +59 -0
- data/test/stripe/webhook_test.rb +21 -17
- data/test/stripe_mock.rb +78 -0
- data/test/stripe_test.rb +6 -15
- data/test/test_data.rb +28 -26
- data/test/test_helper.rb +48 -29
- metadata +183 -70
- data/lib/stripe/alipay_account.rb +0 -22
- data/lib/stripe/application_fee.rb +0 -22
- data/lib/stripe/application_fee_refund.rb +0 -20
- data/lib/stripe/bank_account.rb +0 -30
- data/lib/stripe/bitcoin_transaction.rb +0 -11
- data/lib/stripe/card.rb +0 -27
- data/lib/stripe/charge.rb +0 -82
- data/lib/stripe/customer.rb +0 -79
- data/lib/stripe/dispute.rb +0 -17
- data/lib/stripe/ephemeral_key.rb +0 -18
- data/lib/stripe/file_upload.rb +0 -33
- data/lib/stripe/invoice.rb +0 -29
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -29
- data/lib/stripe/payout.rb +0 -18
- data/lib/stripe/recipient_transfer.rb +0 -6
- data/lib/stripe/reversal.rb +0 -20
- data/lib/stripe/source.rb +0 -23
- data/lib/stripe/subscription.rb +0 -33
- data/lib/stripe/subscription_item.rb +0 -14
- data/lib/stripe/transfer.rb +0 -18
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/bitcoin_receiver_test.rb +0 -67
- data/test/stripe/bitcoin_transaction_test.rb +0 -19
- data/test/stripe/file_upload_test.rb +0 -66
- data/test/stripe/recipient_card_test.rb +0 -44
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
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.9'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0.9'
|
11
|
+
date: 2020-02-26 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
27
13
|
description: Stripe is the easiest way to accept payments online. See https://stripe.com
|
28
14
|
for details.
|
29
15
|
email: support@stripe.com
|
@@ -32,10 +18,17 @@ executables:
|
|
32
18
|
extensions: []
|
33
19
|
extra_rdoc_files: []
|
34
20
|
files:
|
21
|
+
- ".editorconfig"
|
35
22
|
- ".gitattributes"
|
36
23
|
- ".github/ISSUE_TEMPLATE.md"
|
37
24
|
- ".gitignore"
|
25
|
+
- ".rubocop.yml"
|
26
|
+
- ".rubocop_todo.yml"
|
38
27
|
- ".travis.yml"
|
28
|
+
- ".vscode/extensions.json"
|
29
|
+
- ".vscode/settings.json"
|
30
|
+
- CHANGELOG.md
|
31
|
+
- CODE_OF_CONDUCT.md
|
39
32
|
- CONTRIBUTORS
|
40
33
|
- Gemfile
|
41
34
|
- History.txt
|
@@ -46,63 +39,109 @@ files:
|
|
46
39
|
- bin/stripe-console
|
47
40
|
- lib/data/ca-certificates.crt
|
48
41
|
- lib/stripe.rb
|
49
|
-
- lib/stripe/account.rb
|
50
|
-
- lib/stripe/alipay_account.rb
|
51
42
|
- lib/stripe/api_operations/create.rb
|
52
43
|
- lib/stripe/api_operations/delete.rb
|
53
44
|
- lib/stripe/api_operations/list.rb
|
45
|
+
- lib/stripe/api_operations/nested_resource.rb
|
54
46
|
- lib/stripe/api_operations/request.rb
|
55
47
|
- lib/stripe/api_operations/save.rb
|
56
48
|
- lib/stripe/api_resource.rb
|
57
|
-
- lib/stripe/
|
58
|
-
- lib/stripe/
|
59
|
-
- lib/stripe/application_fee_refund.rb
|
60
|
-
- lib/stripe/balance.rb
|
61
|
-
- lib/stripe/balance_transaction.rb
|
62
|
-
- lib/stripe/bank_account.rb
|
63
|
-
- lib/stripe/bitcoin_receiver.rb
|
64
|
-
- lib/stripe/bitcoin_transaction.rb
|
65
|
-
- lib/stripe/card.rb
|
66
|
-
- lib/stripe/charge.rb
|
67
|
-
- lib/stripe/country_spec.rb
|
68
|
-
- lib/stripe/coupon.rb
|
69
|
-
- lib/stripe/customer.rb
|
70
|
-
- lib/stripe/dispute.rb
|
71
|
-
- lib/stripe/ephemeral_key.rb
|
49
|
+
- lib/stripe/connection_manager.rb
|
50
|
+
- lib/stripe/error_object.rb
|
72
51
|
- lib/stripe/errors.rb
|
73
|
-
- lib/stripe/
|
74
|
-
- lib/stripe/file_upload.rb
|
75
|
-
- lib/stripe/invoice.rb
|
76
|
-
- lib/stripe/invoice_item.rb
|
77
|
-
- lib/stripe/invoice_line_item.rb
|
52
|
+
- lib/stripe/instrumentation.rb
|
78
53
|
- lib/stripe/list_object.rb
|
79
|
-
- lib/stripe/
|
54
|
+
- lib/stripe/multipart_encoder.rb
|
80
55
|
- lib/stripe/oauth.rb
|
81
|
-
- lib/stripe/
|
82
|
-
- lib/stripe/
|
83
|
-
- lib/stripe/
|
84
|
-
- lib/stripe/
|
85
|
-
- lib/stripe/
|
86
|
-
- lib/stripe/
|
87
|
-
- lib/stripe/
|
88
|
-
- lib/stripe/
|
89
|
-
- lib/stripe/
|
56
|
+
- lib/stripe/object_types.rb
|
57
|
+
- lib/stripe/resources.rb
|
58
|
+
- lib/stripe/resources/account.rb
|
59
|
+
- lib/stripe/resources/account_link.rb
|
60
|
+
- lib/stripe/resources/alipay_account.rb
|
61
|
+
- lib/stripe/resources/apple_pay_domain.rb
|
62
|
+
- lib/stripe/resources/application_fee.rb
|
63
|
+
- lib/stripe/resources/application_fee_refund.rb
|
64
|
+
- lib/stripe/resources/balance.rb
|
65
|
+
- lib/stripe/resources/balance_transaction.rb
|
66
|
+
- lib/stripe/resources/bank_account.rb
|
67
|
+
- lib/stripe/resources/bitcoin_receiver.rb
|
68
|
+
- lib/stripe/resources/bitcoin_transaction.rb
|
69
|
+
- lib/stripe/resources/capability.rb
|
70
|
+
- lib/stripe/resources/card.rb
|
71
|
+
- lib/stripe/resources/charge.rb
|
72
|
+
- lib/stripe/resources/checkout/session.rb
|
73
|
+
- lib/stripe/resources/country_spec.rb
|
74
|
+
- lib/stripe/resources/coupon.rb
|
75
|
+
- lib/stripe/resources/credit_note.rb
|
76
|
+
- lib/stripe/resources/credit_note_line_item.rb
|
77
|
+
- lib/stripe/resources/customer.rb
|
78
|
+
- lib/stripe/resources/customer_balance_transaction.rb
|
79
|
+
- lib/stripe/resources/discount.rb
|
80
|
+
- lib/stripe/resources/dispute.rb
|
81
|
+
- lib/stripe/resources/ephemeral_key.rb
|
82
|
+
- lib/stripe/resources/event.rb
|
83
|
+
- lib/stripe/resources/exchange_rate.rb
|
84
|
+
- lib/stripe/resources/file.rb
|
85
|
+
- lib/stripe/resources/file_link.rb
|
86
|
+
- lib/stripe/resources/invoice.rb
|
87
|
+
- lib/stripe/resources/invoice_item.rb
|
88
|
+
- lib/stripe/resources/invoice_line_item.rb
|
89
|
+
- lib/stripe/resources/issuing/authorization.rb
|
90
|
+
- lib/stripe/resources/issuing/card.rb
|
91
|
+
- lib/stripe/resources/issuing/card_details.rb
|
92
|
+
- lib/stripe/resources/issuing/cardholder.rb
|
93
|
+
- lib/stripe/resources/issuing/dispute.rb
|
94
|
+
- lib/stripe/resources/issuing/transaction.rb
|
95
|
+
- lib/stripe/resources/login_link.rb
|
96
|
+
- lib/stripe/resources/mandate.rb
|
97
|
+
- lib/stripe/resources/order.rb
|
98
|
+
- lib/stripe/resources/order_return.rb
|
99
|
+
- lib/stripe/resources/payment_intent.rb
|
100
|
+
- lib/stripe/resources/payment_method.rb
|
101
|
+
- lib/stripe/resources/payout.rb
|
102
|
+
- lib/stripe/resources/person.rb
|
103
|
+
- lib/stripe/resources/plan.rb
|
104
|
+
- lib/stripe/resources/product.rb
|
105
|
+
- lib/stripe/resources/radar/early_fraud_warning.rb
|
106
|
+
- lib/stripe/resources/radar/value_list.rb
|
107
|
+
- lib/stripe/resources/radar/value_list_item.rb
|
108
|
+
- lib/stripe/resources/recipient.rb
|
109
|
+
- lib/stripe/resources/recipient_transfer.rb
|
110
|
+
- lib/stripe/resources/refund.rb
|
111
|
+
- lib/stripe/resources/reporting/report_run.rb
|
112
|
+
- lib/stripe/resources/reporting/report_type.rb
|
113
|
+
- lib/stripe/resources/reversal.rb
|
114
|
+
- lib/stripe/resources/review.rb
|
115
|
+
- lib/stripe/resources/setup_intent.rb
|
116
|
+
- lib/stripe/resources/sigma/scheduled_query_run.rb
|
117
|
+
- lib/stripe/resources/sku.rb
|
118
|
+
- lib/stripe/resources/source.rb
|
119
|
+
- lib/stripe/resources/source_transaction.rb
|
120
|
+
- lib/stripe/resources/subscription.rb
|
121
|
+
- lib/stripe/resources/subscription_item.rb
|
122
|
+
- lib/stripe/resources/subscription_schedule.rb
|
123
|
+
- lib/stripe/resources/tax_id.rb
|
124
|
+
- lib/stripe/resources/tax_rate.rb
|
125
|
+
- lib/stripe/resources/terminal/connection_token.rb
|
126
|
+
- lib/stripe/resources/terminal/location.rb
|
127
|
+
- lib/stripe/resources/terminal/reader.rb
|
128
|
+
- lib/stripe/resources/three_d_secure.rb
|
129
|
+
- lib/stripe/resources/token.rb
|
130
|
+
- lib/stripe/resources/topup.rb
|
131
|
+
- lib/stripe/resources/transfer.rb
|
132
|
+
- lib/stripe/resources/usage_record.rb
|
133
|
+
- lib/stripe/resources/usage_record_summary.rb
|
134
|
+
- lib/stripe/resources/webhook_endpoint.rb
|
90
135
|
- lib/stripe/singleton_api_resource.rb
|
91
|
-
- lib/stripe/sku.rb
|
92
|
-
- lib/stripe/source.rb
|
93
136
|
- lib/stripe/stripe_client.rb
|
94
137
|
- lib/stripe/stripe_object.rb
|
95
138
|
- lib/stripe/stripe_response.rb
|
96
|
-
- lib/stripe/subscription.rb
|
97
|
-
- lib/stripe/subscription_item.rb
|
98
|
-
- lib/stripe/three_d_secure.rb
|
99
|
-
- lib/stripe/token.rb
|
100
|
-
- lib/stripe/transfer.rb
|
101
139
|
- lib/stripe/util.rb
|
102
140
|
- lib/stripe/version.rb
|
103
141
|
- lib/stripe/webhook.rb
|
104
142
|
- stripe.gemspec
|
105
|
-
- test/
|
143
|
+
- test/openapi/README.md
|
144
|
+
- test/stripe/account_link_test.rb
|
106
145
|
- test/stripe/account_test.rb
|
107
146
|
- test/stripe/alipay_account_test.rb
|
108
147
|
- test/stripe/api_operations_test.rb
|
@@ -111,51 +150,91 @@ files:
|
|
111
150
|
- test/stripe/application_fee_refund_test.rb
|
112
151
|
- test/stripe/application_fee_test.rb
|
113
152
|
- test/stripe/balance_test.rb
|
153
|
+
- test/stripe/balance_transaction_test.rb
|
114
154
|
- test/stripe/bank_account_test.rb
|
115
|
-
- test/stripe/
|
116
|
-
- test/stripe/bitcoin_transaction_test.rb
|
155
|
+
- test/stripe/capability_test.rb
|
117
156
|
- test/stripe/charge_test.rb
|
157
|
+
- test/stripe/checkout/session_test.rb
|
158
|
+
- test/stripe/connection_manager_test.rb
|
118
159
|
- test/stripe/country_spec_test.rb
|
119
160
|
- test/stripe/coupon_test.rb
|
161
|
+
- test/stripe/credit_note_test.rb
|
162
|
+
- test/stripe/customer_balance_transaction_test.rb
|
120
163
|
- test/stripe/customer_card_test.rb
|
121
164
|
- test/stripe/customer_test.rb
|
122
165
|
- test/stripe/dispute_test.rb
|
123
166
|
- test/stripe/ephemeral_key_test.rb
|
124
167
|
- test/stripe/errors_test.rb
|
125
|
-
- test/stripe/
|
168
|
+
- test/stripe/exchange_rate_test.rb
|
169
|
+
- test/stripe/file_link_test.rb
|
170
|
+
- test/stripe/file_test.rb
|
171
|
+
- test/stripe/instrumentation_test.rb
|
126
172
|
- test/stripe/invoice_item_test.rb
|
127
173
|
- test/stripe/invoice_line_item_test.rb
|
128
174
|
- test/stripe/invoice_test.rb
|
175
|
+
- test/stripe/issuing/authorization_test.rb
|
176
|
+
- test/stripe/issuing/card_test.rb
|
177
|
+
- test/stripe/issuing/cardholder_test.rb
|
178
|
+
- test/stripe/issuing/dispute_test.rb
|
179
|
+
- test/stripe/issuing/transaction_test.rb
|
129
180
|
- test/stripe/list_object_test.rb
|
130
181
|
- test/stripe/login_link_test.rb
|
182
|
+
- test/stripe/mandate_test.rb
|
183
|
+
- test/stripe/multipart_encoder_test.rb
|
131
184
|
- test/stripe/oauth_test.rb
|
132
185
|
- test/stripe/order_return_test.rb
|
133
186
|
- test/stripe/order_test.rb
|
187
|
+
- test/stripe/payment_intent_test.rb
|
188
|
+
- test/stripe/payment_method_test.rb
|
134
189
|
- test/stripe/payout_test.rb
|
190
|
+
- test/stripe/person_test.rb
|
135
191
|
- test/stripe/plan_test.rb
|
136
192
|
- test/stripe/product_test.rb
|
137
|
-
- test/stripe/
|
193
|
+
- test/stripe/radar/early_fraud_warning_test.rb
|
194
|
+
- test/stripe/radar/value_list_item_test.rb
|
195
|
+
- test/stripe/radar/value_list_test.rb
|
138
196
|
- test/stripe/recipient_test.rb
|
139
197
|
- test/stripe/refund_test.rb
|
198
|
+
- test/stripe/reporting/report_run_test.rb
|
199
|
+
- test/stripe/reporting/report_type_test.rb
|
140
200
|
- test/stripe/reversal_test.rb
|
201
|
+
- test/stripe/review_test.rb
|
202
|
+
- test/stripe/setup_intent_test.rb
|
203
|
+
- test/stripe/sigma/scheduled_query_run_test.rb
|
141
204
|
- test/stripe/sku_test.rb
|
142
205
|
- test/stripe/source_test.rb
|
143
206
|
- test/stripe/stripe_client_test.rb
|
144
207
|
- test/stripe/stripe_object_test.rb
|
145
208
|
- test/stripe/stripe_response_test.rb
|
146
209
|
- test/stripe/subscription_item_test.rb
|
210
|
+
- test/stripe/subscription_schedule_test.rb
|
147
211
|
- test/stripe/subscription_test.rb
|
212
|
+
- test/stripe/tax_id_test.rb
|
213
|
+
- test/stripe/tax_rate_test.rb
|
214
|
+
- test/stripe/terminal/connection_token_test.rb
|
215
|
+
- test/stripe/terminal/location_test.rb
|
216
|
+
- test/stripe/terminal/reader_test.rb
|
148
217
|
- test/stripe/three_d_secure_test.rb
|
218
|
+
- test/stripe/topup_test.rb
|
149
219
|
- test/stripe/transfer_test.rb
|
220
|
+
- test/stripe/usage_record_summary_test.rb
|
150
221
|
- test/stripe/util_test.rb
|
222
|
+
- test/stripe/webhook_endpoint_test.rb
|
151
223
|
- test/stripe/webhook_test.rb
|
224
|
+
- test/stripe_mock.rb
|
152
225
|
- test/stripe_test.rb
|
153
226
|
- test/test_data.rb
|
154
227
|
- test/test_helper.rb
|
155
228
|
homepage: https://stripe.com/docs/api/ruby
|
156
229
|
licenses:
|
157
230
|
- MIT
|
158
|
-
metadata:
|
231
|
+
metadata:
|
232
|
+
bug_tracker_uri: https://github.com/stripe/stripe-ruby/issues
|
233
|
+
changelog_uri: https://github.com/stripe/stripe-ruby/blob/master/CHANGELOG.md
|
234
|
+
documentation_uri: https://stripe.com/docs/api/ruby
|
235
|
+
github_repo: ssh://github.com/stripe/stripe-ruby
|
236
|
+
homepage_uri: https://stripe.com/docs/api/ruby
|
237
|
+
source_code_uri: https://github.com/stripe/stripe-ruby
|
159
238
|
post_install_message:
|
160
239
|
rdoc_options: []
|
161
240
|
require_paths:
|
@@ -164,20 +243,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
164
243
|
requirements:
|
165
244
|
- - ">="
|
166
245
|
- !ruby/object:Gem::Version
|
167
|
-
version:
|
246
|
+
version: 2.3.0
|
168
247
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
169
248
|
requirements:
|
170
249
|
- - ">="
|
171
250
|
- !ruby/object:Gem::Version
|
172
251
|
version: '0'
|
173
252
|
requirements: []
|
174
|
-
|
175
|
-
rubygems_version: 2.6.12
|
253
|
+
rubygems_version: 3.1.2
|
176
254
|
signing_key:
|
177
255
|
specification_version: 4
|
178
256
|
summary: Ruby bindings for the Stripe API
|
179
257
|
test_files:
|
180
|
-
- test/
|
258
|
+
- test/openapi/README.md
|
259
|
+
- test/stripe/account_link_test.rb
|
181
260
|
- test/stripe/account_test.rb
|
182
261
|
- test/stripe/alipay_account_test.rb
|
183
262
|
- test/stripe/api_operations_test.rb
|
@@ -186,44 +265,78 @@ test_files:
|
|
186
265
|
- test/stripe/application_fee_refund_test.rb
|
187
266
|
- test/stripe/application_fee_test.rb
|
188
267
|
- test/stripe/balance_test.rb
|
268
|
+
- test/stripe/balance_transaction_test.rb
|
189
269
|
- test/stripe/bank_account_test.rb
|
190
|
-
- test/stripe/
|
191
|
-
- test/stripe/bitcoin_transaction_test.rb
|
270
|
+
- test/stripe/capability_test.rb
|
192
271
|
- test/stripe/charge_test.rb
|
272
|
+
- test/stripe/checkout/session_test.rb
|
273
|
+
- test/stripe/connection_manager_test.rb
|
193
274
|
- test/stripe/country_spec_test.rb
|
194
275
|
- test/stripe/coupon_test.rb
|
276
|
+
- test/stripe/credit_note_test.rb
|
277
|
+
- test/stripe/customer_balance_transaction_test.rb
|
195
278
|
- test/stripe/customer_card_test.rb
|
196
279
|
- test/stripe/customer_test.rb
|
197
280
|
- test/stripe/dispute_test.rb
|
198
281
|
- test/stripe/ephemeral_key_test.rb
|
199
282
|
- test/stripe/errors_test.rb
|
200
|
-
- test/stripe/
|
283
|
+
- test/stripe/exchange_rate_test.rb
|
284
|
+
- test/stripe/file_link_test.rb
|
285
|
+
- test/stripe/file_test.rb
|
286
|
+
- test/stripe/instrumentation_test.rb
|
201
287
|
- test/stripe/invoice_item_test.rb
|
202
288
|
- test/stripe/invoice_line_item_test.rb
|
203
289
|
- test/stripe/invoice_test.rb
|
290
|
+
- test/stripe/issuing/authorization_test.rb
|
291
|
+
- test/stripe/issuing/card_test.rb
|
292
|
+
- test/stripe/issuing/cardholder_test.rb
|
293
|
+
- test/stripe/issuing/dispute_test.rb
|
294
|
+
- test/stripe/issuing/transaction_test.rb
|
204
295
|
- test/stripe/list_object_test.rb
|
205
296
|
- test/stripe/login_link_test.rb
|
297
|
+
- test/stripe/mandate_test.rb
|
298
|
+
- test/stripe/multipart_encoder_test.rb
|
206
299
|
- test/stripe/oauth_test.rb
|
207
300
|
- test/stripe/order_return_test.rb
|
208
301
|
- test/stripe/order_test.rb
|
302
|
+
- test/stripe/payment_intent_test.rb
|
303
|
+
- test/stripe/payment_method_test.rb
|
209
304
|
- test/stripe/payout_test.rb
|
305
|
+
- test/stripe/person_test.rb
|
210
306
|
- test/stripe/plan_test.rb
|
211
307
|
- test/stripe/product_test.rb
|
212
|
-
- test/stripe/
|
308
|
+
- test/stripe/radar/early_fraud_warning_test.rb
|
309
|
+
- test/stripe/radar/value_list_item_test.rb
|
310
|
+
- test/stripe/radar/value_list_test.rb
|
213
311
|
- test/stripe/recipient_test.rb
|
214
312
|
- test/stripe/refund_test.rb
|
313
|
+
- test/stripe/reporting/report_run_test.rb
|
314
|
+
- test/stripe/reporting/report_type_test.rb
|
215
315
|
- test/stripe/reversal_test.rb
|
316
|
+
- test/stripe/review_test.rb
|
317
|
+
- test/stripe/setup_intent_test.rb
|
318
|
+
- test/stripe/sigma/scheduled_query_run_test.rb
|
216
319
|
- test/stripe/sku_test.rb
|
217
320
|
- test/stripe/source_test.rb
|
218
321
|
- test/stripe/stripe_client_test.rb
|
219
322
|
- test/stripe/stripe_object_test.rb
|
220
323
|
- test/stripe/stripe_response_test.rb
|
221
324
|
- test/stripe/subscription_item_test.rb
|
325
|
+
- test/stripe/subscription_schedule_test.rb
|
222
326
|
- test/stripe/subscription_test.rb
|
327
|
+
- test/stripe/tax_id_test.rb
|
328
|
+
- test/stripe/tax_rate_test.rb
|
329
|
+
- test/stripe/terminal/connection_token_test.rb
|
330
|
+
- test/stripe/terminal/location_test.rb
|
331
|
+
- test/stripe/terminal/reader_test.rb
|
223
332
|
- test/stripe/three_d_secure_test.rb
|
333
|
+
- test/stripe/topup_test.rb
|
224
334
|
- test/stripe/transfer_test.rb
|
335
|
+
- test/stripe/usage_record_summary_test.rb
|
225
336
|
- test/stripe/util_test.rb
|
337
|
+
- test/stripe/webhook_endpoint_test.rb
|
226
338
|
- test/stripe/webhook_test.rb
|
339
|
+
- test/stripe_mock.rb
|
227
340
|
- test/stripe_test.rb
|
228
341
|
- test/test_data.rb
|
229
342
|
- test/test_helper.rb
|
@@ -1,22 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class AlipayAccount < APIResource
|
3
|
-
include Stripe::APIOperations::Save
|
4
|
-
include Stripe::APIOperations::Delete
|
5
|
-
|
6
|
-
OBJECT_NAME = 'alipay_account'
|
7
|
-
|
8
|
-
def resource_url
|
9
|
-
if respond_to?(:customer) && !self.customer.nil?
|
10
|
-
"#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
def self.update(id, params=nil, opts=nil)
|
15
|
-
raise NotImplementedError.new("Alipay accounts cannot be updated without a customer ID. Update an Alipay account by `a = customer.sources.retrieve('alipay_account_id'); a.save`")
|
16
|
-
end
|
17
|
-
|
18
|
-
def self.retrieve(id, opts=nil)
|
19
|
-
raise NotImplementedError.new("Alipay accounts cannot be retrieved without a customer ID. Retrieve an Alipay account using customer.sources.retrieve('alipay_account_id')")
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class ApplicationFee < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
|
5
|
-
OBJECT_NAME = 'application_fee'
|
6
|
-
|
7
|
-
def self.resource_url
|
8
|
-
'/v1/application_fees'
|
9
|
-
end
|
10
|
-
|
11
|
-
# If you don't need access to an updated fee object after the refund, it's
|
12
|
-
# more performant to just call `fee.refunds.create` directly.
|
13
|
-
def refund(params={}, opts={})
|
14
|
-
self.refunds.create(params, opts)
|
15
|
-
|
16
|
-
# now that a refund has been created, we expect the state of this object
|
17
|
-
# to change as well (i.e. `refunded` will now be `true`) so refresh it
|
18
|
-
# from the server
|
19
|
-
self.refresh
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class ApplicationFeeRefund < APIResource
|
3
|
-
include Stripe::APIOperations::Save
|
4
|
-
extend Stripe::APIOperations::List
|
5
|
-
|
6
|
-
OBJECT_NAME = 'fee_refund'
|
7
|
-
|
8
|
-
def resource_url
|
9
|
-
"#{ApplicationFee.resource_url}/#{CGI.escape(fee)}/refunds/#{CGI.escape(id)}"
|
10
|
-
end
|
11
|
-
|
12
|
-
def self.update(id, params=nil, opts=nil)
|
13
|
-
raise NotImplementedError.new("Refunds cannot be updated without an application fee ID. Update a refund by using `a = appfee.refunds.retrieve('refund_id'); a.save`")
|
14
|
-
end
|
15
|
-
|
16
|
-
def self.retrieve(id, api_key=nil)
|
17
|
-
raise NotImplementedError.new("Refunds cannot be retrieved without an application fee ID. Retrieve a refund using appfee.refunds.retrieve('refund_id')")
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
data/lib/stripe/bank_account.rb
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class BankAccount < APIResource
|
3
|
-
include Stripe::APIOperations::Save
|
4
|
-
include Stripe::APIOperations::Delete
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
|
7
|
-
OBJECT_NAME = 'bank_account'
|
8
|
-
|
9
|
-
def verify(params={}, opts={})
|
10
|
-
resp, opts = request(:post, resource_url + '/verify', params, opts)
|
11
|
-
initialize_from(resp.data, opts)
|
12
|
-
end
|
13
|
-
|
14
|
-
def resource_url
|
15
|
-
if respond_to?(:customer)
|
16
|
-
"#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
|
17
|
-
elsif respond_to?(:account)
|
18
|
-
"#{Account.resource_url}/#{CGI.escape(account)}/external_accounts/#{CGI.escape(id)}"
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
def self.update(id, params=nil, opts=nil)
|
23
|
-
raise NotImplementedError.new("Bank accounts cannot be updated without an account ID. Update a bank account by using `a = account.external_accounts.retrieve('card_id'); a.save`")
|
24
|
-
end
|
25
|
-
|
26
|
-
def self.retrieve(id, opts=nil)
|
27
|
-
raise NotImplementedError.new("Bank accounts cannot be retrieved without an account ID. Retrieve a bank account using account.external_accounts.retrieve('card_id')")
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
data/lib/stripe/card.rb
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Card < APIResource
|
3
|
-
include Stripe::APIOperations::Save
|
4
|
-
include Stripe::APIOperations::Delete
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
|
7
|
-
OBJECT_NAME = 'card'
|
8
|
-
|
9
|
-
def resource_url
|
10
|
-
if respond_to?(:recipient) && !recipient.nil? && !recipient.empty?
|
11
|
-
"#{Recipient.resource_url}/#{CGI.escape(recipient)}/cards/#{CGI.escape(id)}"
|
12
|
-
elsif respond_to?(:customer) && !customer.nil? && !customer.empty?
|
13
|
-
"#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
|
14
|
-
elsif respond_to?(:account) && !account.nil? && !account.empty?
|
15
|
-
"#{Account.resource_url}/#{CGI.escape(account)}/external_accounts/#{CGI.escape(id)}"
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
def self.update(id, params=nil, opts=nil)
|
20
|
-
raise NotImplementedError.new("Cards cannot be updated without a customer ID. Update a card using `c = customer.sources.retrieve('card_id'); c.save`")
|
21
|
-
end
|
22
|
-
|
23
|
-
def self.retrieve(id, opts=nil)
|
24
|
-
raise NotImplementedError.new("Cards cannot be retrieved without a customer ID. Retrieve a card using customer.sources.retrieve('card_id')")
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
data/lib/stripe/charge.rb
DELETED
@@ -1,82 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Charge < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
extend Stripe::APIOperations::Create
|
5
|
-
include Stripe::APIOperations::Save
|
6
|
-
|
7
|
-
OBJECT_NAME = 'charge'
|
8
|
-
|
9
|
-
def refund(params={}, opts={})
|
10
|
-
# Old versions of charge objects included a `refunds` field that was just
|
11
|
-
# a vanilla array instead of a Stripe list object.
|
12
|
-
#
|
13
|
-
# Where possible, we'd still like to use the new refund endpoint (thus
|
14
|
-
# `self.refunds.create`), but detect the old API version by looking for
|
15
|
-
# an `Array` and fall back to the old refund URL if necessary so as to
|
16
|
-
# maintain internal compatibility.
|
17
|
-
unless self.refunds.is_a?(Array)
|
18
|
-
self.refunds.create(params, opts)
|
19
|
-
|
20
|
-
# now that a refund has been created, we expect the state of this object
|
21
|
-
# to change as well (i.e. `refunded` will now be `true`) so refresh it
|
22
|
-
# from the server
|
23
|
-
self.refresh
|
24
|
-
else
|
25
|
-
resp, opts = request(:post, refund_url, params, opts)
|
26
|
-
initialize_from(resp.data, opts)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
def capture(params={}, opts={})
|
31
|
-
resp, opts = request(:post, capture_url, params, opts)
|
32
|
-
initialize_from(resp.data, opts)
|
33
|
-
end
|
34
|
-
|
35
|
-
def update_dispute(params={}, opts={})
|
36
|
-
resp, opts = request(:post, dispute_url, params, opts)
|
37
|
-
initialize_from({ :dispute => resp.data }, opts, true)
|
38
|
-
dispute
|
39
|
-
end
|
40
|
-
|
41
|
-
def close_dispute(params={}, opts={})
|
42
|
-
resp, opts = request(:post, close_dispute_url, params, opts)
|
43
|
-
initialize_from(resp.data, opts)
|
44
|
-
end
|
45
|
-
|
46
|
-
def mark_as_fraudulent
|
47
|
-
params = {
|
48
|
-
:fraud_details => { :user_report => 'fraudulent' }
|
49
|
-
}
|
50
|
-
resp, opts = request(:post, resource_url, params)
|
51
|
-
initialize_from(resp.data, opts)
|
52
|
-
end
|
53
|
-
|
54
|
-
def mark_as_safe
|
55
|
-
params = {
|
56
|
-
:fraud_details => { :user_report => 'safe' }
|
57
|
-
}
|
58
|
-
resp, opts = request(:post, resource_url, params)
|
59
|
-
initialize_from(resp.data, opts)
|
60
|
-
end
|
61
|
-
|
62
|
-
private
|
63
|
-
|
64
|
-
def capture_url
|
65
|
-
resource_url + '/capture'
|
66
|
-
end
|
67
|
-
|
68
|
-
def dispute_url
|
69
|
-
resource_url + '/dispute'
|
70
|
-
end
|
71
|
-
|
72
|
-
def close_dispute_url
|
73
|
-
resource_url + '/dispute/close'
|
74
|
-
end
|
75
|
-
|
76
|
-
# Note that this is actually the *old* refund URL and its use is no longer
|
77
|
-
# preferred.
|
78
|
-
def refund_url
|
79
|
-
resource_url + '/refund'
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|