stripe 3.3.1 → 5.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +962 -0
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +24 -22
- data/History.txt +1 -689
- data/README.md +202 -55
- data/Rakefile +18 -12
- data/VERSION +1 -1
- data/bin/stripe-console +5 -3
- data/lib/stripe/api_operations/create.rb +4 -2
- data/lib/stripe/api_operations/delete.rb +31 -3
- data/lib/stripe/api_operations/list.rb +4 -13
- data/lib/stripe/api_operations/nested_resource.rb +73 -0
- data/lib/stripe/api_operations/request.rb +84 -17
- data/lib/stripe/api_operations/save.rb +25 -13
- data/lib/stripe/api_resource.rb +70 -11
- data/lib/stripe/connection_manager.rb +179 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +47 -19
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +54 -22
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +29 -20
- data/lib/stripe/object_types.rb +107 -0
- data/lib/stripe/{account.rb → resources/account.rb} +70 -36
- data/lib/stripe/resources/account_link.rb +10 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +5 -2
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +31 -0
- data/lib/stripe/resources/balance.rb +8 -0
- data/lib/stripe/resources/balance_transaction.rb +10 -0
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +7 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/resources/capability.rb +34 -0
- data/lib/stripe/resources/card.rb +38 -0
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/resources/country_spec.rb +10 -0
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +5 -2
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +8 -0
- data/lib/stripe/resources/customer.rb +41 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/resources/discount.rb +7 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/resources/ephemeral_key.rb +20 -0
- data/lib/stripe/resources/event.rb +10 -0
- data/lib/stripe/resources/exchange_rate.rb +10 -0
- data/lib/stripe/resources/file.rb +36 -0
- data/lib/stripe/resources/file_link.rb +12 -0
- data/lib/stripe/resources/identity/verification_report.rb +12 -0
- data/lib/stripe/resources/identity/verification_session.rb +35 -0
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +5 -2
- data/lib/stripe/resources/invoice_line_item.rb +8 -0
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/resources/issuing/card_details.rb +9 -0
- data/lib/stripe/resources/issuing/cardholder.rb +14 -0
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/resources/issuing/transaction.rb +13 -0
- data/lib/stripe/resources/line_item.rb +8 -0
- data/lib/stripe/resources/login_link.rb +15 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/resources/order_return.rb +10 -0
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/resources/person.rb +32 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +4 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +6 -3
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/resources/radar/value_list.rb +15 -0
- data/lib/stripe/resources/radar/value_list_item.rb +14 -0
- data/lib/stripe/resources/recipient.rb +14 -0
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/{refund.rb → resources/refund.rb} +4 -1
- data/lib/stripe/resources/reporting/report_run.rb +13 -0
- data/lib/stripe/resources/reporting/report_type.rb +13 -0
- data/lib/stripe/resources/reversal.rb +30 -0
- data/lib/stripe/resources/review.rb +21 -0
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +6 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/resources/source_transaction.rb +7 -0
- data/lib/stripe/resources/subscription.rb +26 -0
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_code.rb +10 -0
- data/lib/stripe/resources/tax_id.rb +27 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/resources/terminal/location.rb +15 -0
- data/lib/stripe/resources/terminal/reader.rb +15 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +4 -1
- data/lib/stripe/resources/token.rb +10 -0
- data/lib/stripe/resources/topup.rb +23 -0
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +8 -0
- data/lib/stripe/resources/usage_record_summary.rb +8 -0
- data/lib/stripe/{recipient.rb → resources/webhook_endpoint.rb} +6 -7
- data/lib/stripe/resources.rb +90 -0
- data/lib/stripe/singleton_api_resource.rb +10 -4
- data/lib/stripe/stripe_client.rb +798 -346
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +271 -126
- data/lib/stripe/stripe_response.rb +89 -27
- data/lib/stripe/util.rb +134 -194
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +57 -18
- data/lib/stripe.rb +74 -186
- data/stripe.gemspec +35 -16
- metadata +110 -165
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -5
- data/.travis.yml +0 -38
- 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/balance.rb +0 -5
- data/lib/stripe/balance_transaction.rb +0 -11
- 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/country_spec.rb +0 -11
- 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/event.rb +0 -7
- data/lib/stripe/file_upload.rb +0 -33
- data/lib/stripe/invoice.rb +0 -29
- data/lib/stripe/invoice_line_item.rb +0 -5
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -29
- data/lib/stripe/order_return.rb +0 -11
- 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/token.rb +0 -7
- data/lib/stripe/transfer.rb +0 -18
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/account_test.rb +0 -202
- data/test/stripe/alipay_account_test.rb +0 -17
- data/test/stripe/api_operations_test.rb +0 -31
- data/test/stripe/api_resource_test.rb +0 -558
- data/test/stripe/apple_pay_domain_test.rb +0 -31
- data/test/stripe/application_fee_refund_test.rb +0 -35
- data/test/stripe/application_fee_test.rb +0 -12
- data/test/stripe/balance_test.rb +0 -11
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/bitcoin_receiver_test.rb +0 -67
- data/test/stripe/bitcoin_transaction_test.rb +0 -19
- data/test/stripe/charge_test.rb +0 -57
- data/test/stripe/country_spec_test.rb +0 -18
- data/test/stripe/coupon_test.rb +0 -42
- data/test/stripe/customer_card_test.rb +0 -46
- data/test/stripe/customer_test.rb +0 -114
- data/test/stripe/dispute_test.rb +0 -40
- data/test/stripe/ephemeral_key_test.rb +0 -84
- data/test/stripe/errors_test.rb +0 -18
- data/test/stripe/file_upload_test.rb +0 -66
- data/test/stripe/invoice_item_test.rb +0 -53
- data/test/stripe/invoice_line_item_test.rb +0 -6
- data/test/stripe/invoice_test.rb +0 -110
- data/test/stripe/list_object_test.rb +0 -170
- data/test/stripe/login_link_test.rb +0 -35
- data/test/stripe/oauth_test.rb +0 -85
- data/test/stripe/order_return_test.rb +0 -19
- data/test/stripe/order_test.rb +0 -57
- data/test/stripe/payout_test.rb +0 -48
- data/test/stripe/plan_test.rb +0 -50
- data/test/stripe/product_test.rb +0 -45
- data/test/stripe/recipient_card_test.rb +0 -44
- data/test/stripe/recipient_test.rb +0 -48
- data/test/stripe/refund_test.rb +0 -37
- data/test/stripe/reversal_test.rb +0 -41
- data/test/stripe/sku_test.rb +0 -48
- data/test/stripe/source_test.rb +0 -68
- data/test/stripe/stripe_client_test.rb +0 -750
- data/test/stripe/stripe_object_test.rb +0 -398
- data/test/stripe/stripe_response_test.rb +0 -46
- data/test/stripe/subscription_item_test.rb +0 -52
- data/test/stripe/subscription_test.rb +0 -58
- data/test/stripe/three_d_secure_test.rb +0 -21
- data/test/stripe/transfer_test.rb +0 -41
- data/test/stripe/util_test.rb +0 -414
- data/test/stripe/webhook_test.rb +0 -92
- data/test/stripe_test.rb +0 -59
- data/test/test_data.rb +0 -59
- data/test/test_helper.rb +0 -56
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.38.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: 2021-08-10 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,8 @@ executables:
|
|
32
18
|
extensions: []
|
33
19
|
extra_rdoc_files: []
|
34
20
|
files:
|
35
|
-
-
|
36
|
-
-
|
37
|
-
- ".gitignore"
|
38
|
-
- ".travis.yml"
|
21
|
+
- CHANGELOG.md
|
22
|
+
- CODE_OF_CONDUCT.md
|
39
23
|
- CONTRIBUTORS
|
40
24
|
- Gemfile
|
41
25
|
- History.txt
|
@@ -46,116 +30,128 @@ files:
|
|
46
30
|
- bin/stripe-console
|
47
31
|
- lib/data/ca-certificates.crt
|
48
32
|
- lib/stripe.rb
|
49
|
-
- lib/stripe/account.rb
|
50
|
-
- lib/stripe/alipay_account.rb
|
51
33
|
- lib/stripe/api_operations/create.rb
|
52
34
|
- lib/stripe/api_operations/delete.rb
|
53
35
|
- lib/stripe/api_operations/list.rb
|
36
|
+
- lib/stripe/api_operations/nested_resource.rb
|
54
37
|
- lib/stripe/api_operations/request.rb
|
55
38
|
- lib/stripe/api_operations/save.rb
|
56
39
|
- 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
|
40
|
+
- lib/stripe/connection_manager.rb
|
41
|
+
- lib/stripe/error_object.rb
|
72
42
|
- 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
|
43
|
+
- lib/stripe/instrumentation.rb
|
78
44
|
- lib/stripe/list_object.rb
|
79
|
-
- lib/stripe/
|
45
|
+
- lib/stripe/multipart_encoder.rb
|
80
46
|
- 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/
|
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/identity/verification_report.rb
|
80
|
+
- lib/stripe/resources/identity/verification_session.rb
|
81
|
+
- lib/stripe/resources/invoice.rb
|
82
|
+
- lib/stripe/resources/invoice_item.rb
|
83
|
+
- lib/stripe/resources/invoice_line_item.rb
|
84
|
+
- lib/stripe/resources/issuing/authorization.rb
|
85
|
+
- lib/stripe/resources/issuing/card.rb
|
86
|
+
- lib/stripe/resources/issuing/card_details.rb
|
87
|
+
- lib/stripe/resources/issuing/cardholder.rb
|
88
|
+
- lib/stripe/resources/issuing/dispute.rb
|
89
|
+
- lib/stripe/resources/issuing/transaction.rb
|
90
|
+
- lib/stripe/resources/line_item.rb
|
91
|
+
- lib/stripe/resources/login_link.rb
|
92
|
+
- lib/stripe/resources/mandate.rb
|
93
|
+
- lib/stripe/resources/order.rb
|
94
|
+
- lib/stripe/resources/order_return.rb
|
95
|
+
- lib/stripe/resources/payment_intent.rb
|
96
|
+
- lib/stripe/resources/payment_method.rb
|
97
|
+
- lib/stripe/resources/payout.rb
|
98
|
+
- lib/stripe/resources/person.rb
|
99
|
+
- lib/stripe/resources/plan.rb
|
100
|
+
- lib/stripe/resources/price.rb
|
101
|
+
- lib/stripe/resources/product.rb
|
102
|
+
- lib/stripe/resources/promotion_code.rb
|
103
|
+
- lib/stripe/resources/quote.rb
|
104
|
+
- lib/stripe/resources/radar/early_fraud_warning.rb
|
105
|
+
- lib/stripe/resources/radar/value_list.rb
|
106
|
+
- lib/stripe/resources/radar/value_list_item.rb
|
107
|
+
- lib/stripe/resources/recipient.rb
|
108
|
+
- lib/stripe/resources/recipient_transfer.rb
|
109
|
+
- lib/stripe/resources/refund.rb
|
110
|
+
- lib/stripe/resources/reporting/report_run.rb
|
111
|
+
- lib/stripe/resources/reporting/report_type.rb
|
112
|
+
- lib/stripe/resources/reversal.rb
|
113
|
+
- lib/stripe/resources/review.rb
|
114
|
+
- lib/stripe/resources/setup_attempt.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_code.rb
|
124
|
+
- lib/stripe/resources/tax_id.rb
|
125
|
+
- lib/stripe/resources/tax_rate.rb
|
126
|
+
- lib/stripe/resources/terminal/connection_token.rb
|
127
|
+
- lib/stripe/resources/terminal/location.rb
|
128
|
+
- lib/stripe/resources/terminal/reader.rb
|
129
|
+
- lib/stripe/resources/three_d_secure.rb
|
130
|
+
- lib/stripe/resources/token.rb
|
131
|
+
- lib/stripe/resources/topup.rb
|
132
|
+
- lib/stripe/resources/transfer.rb
|
133
|
+
- lib/stripe/resources/usage_record.rb
|
134
|
+
- lib/stripe/resources/usage_record_summary.rb
|
135
|
+
- lib/stripe/resources/webhook_endpoint.rb
|
90
136
|
- lib/stripe/singleton_api_resource.rb
|
91
|
-
- lib/stripe/sku.rb
|
92
|
-
- lib/stripe/source.rb
|
93
137
|
- lib/stripe/stripe_client.rb
|
138
|
+
- lib/stripe/stripe_configuration.rb
|
94
139
|
- lib/stripe/stripe_object.rb
|
95
140
|
- 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
141
|
- lib/stripe/util.rb
|
102
142
|
- lib/stripe/version.rb
|
103
143
|
- lib/stripe/webhook.rb
|
104
144
|
- stripe.gemspec
|
105
|
-
- test/api_stub_helpers.rb
|
106
|
-
- test/stripe/account_test.rb
|
107
|
-
- test/stripe/alipay_account_test.rb
|
108
|
-
- test/stripe/api_operations_test.rb
|
109
|
-
- test/stripe/api_resource_test.rb
|
110
|
-
- test/stripe/apple_pay_domain_test.rb
|
111
|
-
- test/stripe/application_fee_refund_test.rb
|
112
|
-
- test/stripe/application_fee_test.rb
|
113
|
-
- test/stripe/balance_test.rb
|
114
|
-
- test/stripe/bank_account_test.rb
|
115
|
-
- test/stripe/bitcoin_receiver_test.rb
|
116
|
-
- test/stripe/bitcoin_transaction_test.rb
|
117
|
-
- test/stripe/charge_test.rb
|
118
|
-
- test/stripe/country_spec_test.rb
|
119
|
-
- test/stripe/coupon_test.rb
|
120
|
-
- test/stripe/customer_card_test.rb
|
121
|
-
- test/stripe/customer_test.rb
|
122
|
-
- test/stripe/dispute_test.rb
|
123
|
-
- test/stripe/ephemeral_key_test.rb
|
124
|
-
- test/stripe/errors_test.rb
|
125
|
-
- test/stripe/file_upload_test.rb
|
126
|
-
- test/stripe/invoice_item_test.rb
|
127
|
-
- test/stripe/invoice_line_item_test.rb
|
128
|
-
- test/stripe/invoice_test.rb
|
129
|
-
- test/stripe/list_object_test.rb
|
130
|
-
- test/stripe/login_link_test.rb
|
131
|
-
- test/stripe/oauth_test.rb
|
132
|
-
- test/stripe/order_return_test.rb
|
133
|
-
- test/stripe/order_test.rb
|
134
|
-
- test/stripe/payout_test.rb
|
135
|
-
- test/stripe/plan_test.rb
|
136
|
-
- test/stripe/product_test.rb
|
137
|
-
- test/stripe/recipient_card_test.rb
|
138
|
-
- test/stripe/recipient_test.rb
|
139
|
-
- test/stripe/refund_test.rb
|
140
|
-
- test/stripe/reversal_test.rb
|
141
|
-
- test/stripe/sku_test.rb
|
142
|
-
- test/stripe/source_test.rb
|
143
|
-
- test/stripe/stripe_client_test.rb
|
144
|
-
- test/stripe/stripe_object_test.rb
|
145
|
-
- test/stripe/stripe_response_test.rb
|
146
|
-
- test/stripe/subscription_item_test.rb
|
147
|
-
- test/stripe/subscription_test.rb
|
148
|
-
- test/stripe/three_d_secure_test.rb
|
149
|
-
- test/stripe/transfer_test.rb
|
150
|
-
- test/stripe/util_test.rb
|
151
|
-
- test/stripe/webhook_test.rb
|
152
|
-
- test/stripe_test.rb
|
153
|
-
- test/test_data.rb
|
154
|
-
- test/test_helper.rb
|
155
145
|
homepage: https://stripe.com/docs/api/ruby
|
156
146
|
licenses:
|
157
147
|
- MIT
|
158
|
-
metadata:
|
148
|
+
metadata:
|
149
|
+
bug_tracker_uri: https://github.com/stripe/stripe-ruby/issues
|
150
|
+
changelog_uri: https://github.com/stripe/stripe-ruby/blob/master/CHANGELOG.md
|
151
|
+
documentation_uri: https://stripe.com/docs/api/ruby
|
152
|
+
github_repo: ssh://github.com/stripe/stripe-ruby
|
153
|
+
homepage_uri: https://stripe.com/docs/api/ruby
|
154
|
+
source_code_uri: https://github.com/stripe/stripe-ruby
|
159
155
|
post_install_message:
|
160
156
|
rdoc_options: []
|
161
157
|
require_paths:
|
@@ -164,66 +160,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
164
160
|
requirements:
|
165
161
|
- - ">="
|
166
162
|
- !ruby/object:Gem::Version
|
167
|
-
version:
|
163
|
+
version: 2.3.0
|
168
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
169
165
|
requirements:
|
170
166
|
- - ">="
|
171
167
|
- !ruby/object:Gem::Version
|
172
168
|
version: '0'
|
173
169
|
requirements: []
|
174
|
-
|
175
|
-
rubygems_version: 2.6.12
|
170
|
+
rubygems_version: 3.1.2
|
176
171
|
signing_key:
|
177
172
|
specification_version: 4
|
178
173
|
summary: Ruby bindings for the Stripe API
|
179
|
-
test_files:
|
180
|
-
- test/api_stub_helpers.rb
|
181
|
-
- test/stripe/account_test.rb
|
182
|
-
- test/stripe/alipay_account_test.rb
|
183
|
-
- test/stripe/api_operations_test.rb
|
184
|
-
- test/stripe/api_resource_test.rb
|
185
|
-
- test/stripe/apple_pay_domain_test.rb
|
186
|
-
- test/stripe/application_fee_refund_test.rb
|
187
|
-
- test/stripe/application_fee_test.rb
|
188
|
-
- test/stripe/balance_test.rb
|
189
|
-
- test/stripe/bank_account_test.rb
|
190
|
-
- test/stripe/bitcoin_receiver_test.rb
|
191
|
-
- test/stripe/bitcoin_transaction_test.rb
|
192
|
-
- test/stripe/charge_test.rb
|
193
|
-
- test/stripe/country_spec_test.rb
|
194
|
-
- test/stripe/coupon_test.rb
|
195
|
-
- test/stripe/customer_card_test.rb
|
196
|
-
- test/stripe/customer_test.rb
|
197
|
-
- test/stripe/dispute_test.rb
|
198
|
-
- test/stripe/ephemeral_key_test.rb
|
199
|
-
- test/stripe/errors_test.rb
|
200
|
-
- test/stripe/file_upload_test.rb
|
201
|
-
- test/stripe/invoice_item_test.rb
|
202
|
-
- test/stripe/invoice_line_item_test.rb
|
203
|
-
- test/stripe/invoice_test.rb
|
204
|
-
- test/stripe/list_object_test.rb
|
205
|
-
- test/stripe/login_link_test.rb
|
206
|
-
- test/stripe/oauth_test.rb
|
207
|
-
- test/stripe/order_return_test.rb
|
208
|
-
- test/stripe/order_test.rb
|
209
|
-
- test/stripe/payout_test.rb
|
210
|
-
- test/stripe/plan_test.rb
|
211
|
-
- test/stripe/product_test.rb
|
212
|
-
- test/stripe/recipient_card_test.rb
|
213
|
-
- test/stripe/recipient_test.rb
|
214
|
-
- test/stripe/refund_test.rb
|
215
|
-
- test/stripe/reversal_test.rb
|
216
|
-
- test/stripe/sku_test.rb
|
217
|
-
- test/stripe/source_test.rb
|
218
|
-
- test/stripe/stripe_client_test.rb
|
219
|
-
- test/stripe/stripe_object_test.rb
|
220
|
-
- test/stripe/stripe_response_test.rb
|
221
|
-
- test/stripe/subscription_item_test.rb
|
222
|
-
- test/stripe/subscription_test.rb
|
223
|
-
- test/stripe/three_d_secure_test.rb
|
224
|
-
- test/stripe/transfer_test.rb
|
225
|
-
- test/stripe/util_test.rb
|
226
|
-
- test/stripe/webhook_test.rb
|
227
|
-
- test/stripe_test.rb
|
228
|
-
- test/test_data.rb
|
229
|
-
- test/test_helper.rb
|
174
|
+
test_files: []
|
data/.gitattributes
DELETED
data/.github/ISSUE_TEMPLATE.md
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
Please only file issues here that you believe represent actual bugs or feature requests for the Stripe Ruby library.
|
2
|
-
|
3
|
-
If you're having general trouble with your Stripe integration, please reach out to support using the form at https://support.stripe.com/ (preferred) or via email to support@stripe.com.
|
4
|
-
|
5
|
-
If you are reporting a bug, please include your Ruby version and the version of the Stripe Ruby library you're using, as well as any other details that may be helpful in reproducing the problem.
|
data/.gitignore
DELETED
data/.travis.yml
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
|
3
|
-
rvm:
|
4
|
-
- 2.0.0
|
5
|
-
- 2.1
|
6
|
-
- 2.2
|
7
|
-
- 2.3.0
|
8
|
-
- 2.4.0
|
9
|
-
- jruby-9.0.5.0
|
10
|
-
|
11
|
-
notifications:
|
12
|
-
email:
|
13
|
-
on_success: never
|
14
|
-
|
15
|
-
sudo: false
|
16
|
-
|
17
|
-
env:
|
18
|
-
global:
|
19
|
-
- STRIPE_MOCK_VERSION=0.1.12
|
20
|
-
|
21
|
-
cache:
|
22
|
-
directories:
|
23
|
-
- stripe-mock
|
24
|
-
|
25
|
-
before_install:
|
26
|
-
# Unpack and start stripe-mock so that the test suite can talk to it
|
27
|
-
- |
|
28
|
-
if [ ! -d "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}" ]; then
|
29
|
-
mkdir -p stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/
|
30
|
-
curl -L "https://github.com/stripe/stripe-mock/releases/download/v${STRIPE_MOCK_VERSION}/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -o "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz"
|
31
|
-
tar -zxf "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -C "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/"
|
32
|
-
fi
|
33
|
-
- |
|
34
|
-
stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/stripe-mock > /dev/null &
|
35
|
-
STRIPE_MOCK_PID=$!
|
36
|
-
|
37
|
-
script:
|
38
|
-
- bundle exec rake
|
@@ -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/balance.rb
DELETED
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
|