stripe_tester 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -4
- data/lib/stripe_tester.rb +2 -2
- data/lib/stripe_tester/version.rb +1 -1
- data/spec/stripe_tester_spec.rb +11 -11
- data/stripe_webhooks/2015-10-16/account_external_account_created.yml +24 -0
- data/stripe_webhooks/2015-10-16/account_external_account_deleted.yml +24 -0
- data/stripe_webhooks/2015-10-16/account_external_account_updated.yml +25 -0
- data/stripe_webhooks/2015-10-16/account_updated.yml +90 -0
- data/stripe_webhooks/2015-10-16/balance_available.yml +19 -0
- data/stripe_webhooks/2015-10-16/bitcoin_receiver_created.yml +30 -0
- data/stripe_webhooks/2015-10-16/bitcoin_receiver_filled.yml +30 -0
- data/stripe_webhooks/2015-10-16/bitcoin_receiver_transaction_created.yml +18 -0
- data/stripe_webhooks/2015-10-16/bitcoin_receiver_updated.yml +31 -0
- data/stripe_webhooks/2015-10-16/charge_captured.yml +66 -0
- data/stripe_webhooks/2015-10-16/charge_dispute_closed.yml +56 -0
- data/stripe_webhooks/2015-10-16/charge_dispute_created.yml +56 -0
- data/stripe_webhooks/2015-10-16/charge_dispute_funds_reinstated.yml +56 -0
- data/stripe_webhooks/2015-10-16/charge_dispute_funds_withdrawn.yml +56 -0
- data/stripe_webhooks/2015-10-16/charge_dispute_updated.yml +85 -0
- data/stripe_webhooks/2015-10-16/charge_failed.yml +66 -0
- data/stripe_webhooks/2015-10-16/charge_refunded.yml +77 -0
- data/stripe_webhooks/2015-10-16/charge_succeeded.yml +66 -0
- data/stripe_webhooks/2015-10-16/charge_updated.yml +68 -0
- data/stripe_webhooks/2015-10-16/coupon_created.yml +25 -0
- data/stripe_webhooks/2015-10-16/coupon_deleted.yml +25 -0
- data/stripe_webhooks/2015-10-16/coupon_updated.yml +26 -0
- data/stripe_webhooks/2015-10-16/customer_bank_account_created.yml +24 -0
- data/stripe_webhooks/2015-10-16/customer_bank_account_deleted.yml +24 -0
- data/stripe_webhooks/2015-10-16/customer_bank_account_updated.yml +25 -0
- data/stripe_webhooks/2015-10-16/customer_card_created.yml +33 -0
- data/stripe_webhooks/2015-10-16/customer_card_deleted.yml +33 -0
- data/stripe_webhooks/2015-10-16/customer_card_updated.yml +35 -0
- data/stripe_webhooks/2015-10-16/customer_created.yml +36 -0
- data/stripe_webhooks/2015-10-16/customer_deleted.yml +36 -0
- data/stripe_webhooks/2015-10-16/customer_discount_created.yml +31 -0
- data/stripe_webhooks/2015-10-16/customer_discount_deleted.yml +31 -0
- data/stripe_webhooks/2015-10-16/customer_discount_updated.yml +47 -0
- data/stripe_webhooks/2015-10-16/customer_subscription_created.yml +41 -0
- data/stripe_webhooks/2015-10-16/customer_subscription_deleted.yml +41 -0
- data/stripe_webhooks/2015-10-16/customer_subscription_trial_will_end.yml +41 -0
- data/stripe_webhooks/2015-10-16/customer_subscription_updated.yml +55 -0
- data/stripe_webhooks/2015-10-16/customer_updated.yml +38 -0
- data/stripe_webhooks/2015-10-16/invoice_created.yml +74 -0
- data/stripe_webhooks/2015-10-16/invoice_payment_failed.yml +74 -0
- data/stripe_webhooks/2015-10-16/invoice_payment_succeeded.yml +74 -0
- data/stripe_webhooks/2015-10-16/invoice_updated.yml +76 -0
- data/stripe_webhooks/2015-10-16/invoiceitem_created.yml +29 -0
- data/stripe_webhooks/2015-10-16/invoiceitem_deleted.yml +29 -0
- data/stripe_webhooks/2015-10-16/invoiceitem_updated.yml +31 -0
- data/stripe_webhooks/2015-10-16/order_created.yml +45 -0
- data/stripe_webhooks/2015-10-16/order_payment_failed.yml +45 -0
- data/stripe_webhooks/2015-10-16/order_payment_succeeded.yml +45 -0
- data/stripe_webhooks/2015-10-16/order_updated.yml +46 -0
- data/stripe_webhooks/2015-10-16/plan_created.yml +23 -0
- data/stripe_webhooks/2015-10-16/plan_deleted.yml +23 -0
- data/stripe_webhooks/2015-10-16/plan_updated.yml +25 -0
- data/stripe_webhooks/2015-10-16/product_created.yml +34 -0
- data/stripe_webhooks/2015-10-16/product_updated.yml +35 -0
- data/stripe_webhooks/2015-10-16/recipient_created.yml +30 -0
- data/stripe_webhooks/2015-10-16/recipient_deleted.yml +30 -0
- data/stripe_webhooks/2015-10-16/recipient_updated.yml +31 -0
- data/stripe_webhooks/2015-10-16/transfer_canceled.yml +38 -0
- data/stripe_webhooks/2015-10-16/transfer_created.yml +38 -0
- data/stripe_webhooks/2015-10-16/transfer_failed.yml +38 -0
- data/stripe_webhooks/2015-10-16/transfer_paid.yml +38 -0
- data/stripe_webhooks/2015-10-16/transfer_updated.yml +40 -0
- data/supported_webhook_versions.md +134 -2
- metadata +64 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe_tester
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Buttercloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -339,6 +339,68 @@ files:
|
|
339
339
|
- stripe_webhooks/2015-10-01/transfer_failed.yml
|
340
340
|
- stripe_webhooks/2015-10-01/transfer_paid.yml
|
341
341
|
- stripe_webhooks/2015-10-01/transfer_updated.yml
|
342
|
+
- stripe_webhooks/2015-10-16/account_external_account_created.yml
|
343
|
+
- stripe_webhooks/2015-10-16/account_external_account_deleted.yml
|
344
|
+
- stripe_webhooks/2015-10-16/account_external_account_updated.yml
|
345
|
+
- stripe_webhooks/2015-10-16/account_updated.yml
|
346
|
+
- stripe_webhooks/2015-10-16/balance_available.yml
|
347
|
+
- stripe_webhooks/2015-10-16/bitcoin_receiver_created.yml
|
348
|
+
- stripe_webhooks/2015-10-16/bitcoin_receiver_filled.yml
|
349
|
+
- stripe_webhooks/2015-10-16/bitcoin_receiver_transaction_created.yml
|
350
|
+
- stripe_webhooks/2015-10-16/bitcoin_receiver_updated.yml
|
351
|
+
- stripe_webhooks/2015-10-16/charge_captured.yml
|
352
|
+
- stripe_webhooks/2015-10-16/charge_dispute_closed.yml
|
353
|
+
- stripe_webhooks/2015-10-16/charge_dispute_created.yml
|
354
|
+
- stripe_webhooks/2015-10-16/charge_dispute_funds_reinstated.yml
|
355
|
+
- stripe_webhooks/2015-10-16/charge_dispute_funds_withdrawn.yml
|
356
|
+
- stripe_webhooks/2015-10-16/charge_dispute_updated.yml
|
357
|
+
- stripe_webhooks/2015-10-16/charge_failed.yml
|
358
|
+
- stripe_webhooks/2015-10-16/charge_refunded.yml
|
359
|
+
- stripe_webhooks/2015-10-16/charge_succeeded.yml
|
360
|
+
- stripe_webhooks/2015-10-16/charge_updated.yml
|
361
|
+
- stripe_webhooks/2015-10-16/coupon_created.yml
|
362
|
+
- stripe_webhooks/2015-10-16/coupon_deleted.yml
|
363
|
+
- stripe_webhooks/2015-10-16/coupon_updated.yml
|
364
|
+
- stripe_webhooks/2015-10-16/customer_bank_account_created.yml
|
365
|
+
- stripe_webhooks/2015-10-16/customer_bank_account_deleted.yml
|
366
|
+
- stripe_webhooks/2015-10-16/customer_bank_account_updated.yml
|
367
|
+
- stripe_webhooks/2015-10-16/customer_card_created.yml
|
368
|
+
- stripe_webhooks/2015-10-16/customer_card_deleted.yml
|
369
|
+
- stripe_webhooks/2015-10-16/customer_card_updated.yml
|
370
|
+
- stripe_webhooks/2015-10-16/customer_created.yml
|
371
|
+
- stripe_webhooks/2015-10-16/customer_deleted.yml
|
372
|
+
- stripe_webhooks/2015-10-16/customer_discount_created.yml
|
373
|
+
- stripe_webhooks/2015-10-16/customer_discount_deleted.yml
|
374
|
+
- stripe_webhooks/2015-10-16/customer_discount_updated.yml
|
375
|
+
- stripe_webhooks/2015-10-16/customer_subscription_created.yml
|
376
|
+
- stripe_webhooks/2015-10-16/customer_subscription_deleted.yml
|
377
|
+
- stripe_webhooks/2015-10-16/customer_subscription_trial_will_end.yml
|
378
|
+
- stripe_webhooks/2015-10-16/customer_subscription_updated.yml
|
379
|
+
- stripe_webhooks/2015-10-16/customer_updated.yml
|
380
|
+
- stripe_webhooks/2015-10-16/invoice_created.yml
|
381
|
+
- stripe_webhooks/2015-10-16/invoice_payment_failed.yml
|
382
|
+
- stripe_webhooks/2015-10-16/invoice_payment_succeeded.yml
|
383
|
+
- stripe_webhooks/2015-10-16/invoice_updated.yml
|
384
|
+
- stripe_webhooks/2015-10-16/invoiceitem_created.yml
|
385
|
+
- stripe_webhooks/2015-10-16/invoiceitem_deleted.yml
|
386
|
+
- stripe_webhooks/2015-10-16/invoiceitem_updated.yml
|
387
|
+
- stripe_webhooks/2015-10-16/order_created.yml
|
388
|
+
- stripe_webhooks/2015-10-16/order_payment_failed.yml
|
389
|
+
- stripe_webhooks/2015-10-16/order_payment_succeeded.yml
|
390
|
+
- stripe_webhooks/2015-10-16/order_updated.yml
|
391
|
+
- stripe_webhooks/2015-10-16/plan_created.yml
|
392
|
+
- stripe_webhooks/2015-10-16/plan_deleted.yml
|
393
|
+
- stripe_webhooks/2015-10-16/plan_updated.yml
|
394
|
+
- stripe_webhooks/2015-10-16/product_created.yml
|
395
|
+
- stripe_webhooks/2015-10-16/product_updated.yml
|
396
|
+
- stripe_webhooks/2015-10-16/recipient_created.yml
|
397
|
+
- stripe_webhooks/2015-10-16/recipient_deleted.yml
|
398
|
+
- stripe_webhooks/2015-10-16/recipient_updated.yml
|
399
|
+
- stripe_webhooks/2015-10-16/transfer_canceled.yml
|
400
|
+
- stripe_webhooks/2015-10-16/transfer_created.yml
|
401
|
+
- stripe_webhooks/2015-10-16/transfer_failed.yml
|
402
|
+
- stripe_webhooks/2015-10-16/transfer_paid.yml
|
403
|
+
- stripe_webhooks/2015-10-16/transfer_updated.yml
|
342
404
|
- supported_webhook_versions.md
|
343
405
|
- wercker.yml
|
344
406
|
homepage: https://github.com/buttercloud/stripe_tester
|