stripe_tester 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +45 -1
- data/lib/stripe_tester/version.rb +1 -1
- data/stripe_webhooks/2012-02-23/account_updated.yml +28 -0
- data/stripe_webhooks/2012-02-23/balance_available.yml +17 -0
- data/stripe_webhooks/2012-02-23/charge_captured.yml +61 -0
- data/stripe_webhooks/2012-02-23/charge_dispute_closed.yml +23 -0
- data/stripe_webhooks/2012-02-23/charge_dispute_created.yml +23 -0
- data/stripe_webhooks/2012-02-23/charge_dispute_updated.yml +25 -0
- data/stripe_webhooks/2012-02-23/charge_failed.yml +61 -0
- data/stripe_webhooks/2012-02-23/charge_refunded.yml +61 -0
- data/stripe_webhooks/2012-02-23/charge_succeeded.yml +61 -0
- data/stripe_webhooks/2012-02-23/charge_updated.yml +63 -0
- data/stripe_webhooks/2012-02-23/coupon_created.yml +23 -0
- data/stripe_webhooks/2012-02-23/coupon_deleted.yml +23 -0
- data/stripe_webhooks/2012-02-23/customer_card_created.yml +31 -0
- data/stripe_webhooks/2012-02-23/customer_card_deleted.yml +31 -0
- data/stripe_webhooks/2012-02-23/customer_card_updated.yml +33 -0
- data/stripe_webhooks/2012-02-23/customer_created.yml +38 -0
- data/stripe_webhooks/2012-02-23/customer_deleted.yml +38 -0
- data/stripe_webhooks/2012-02-23/customer_discount_created.yml +30 -0
- data/stripe_webhooks/2012-02-23/customer_discount_deleted.yml +30 -0
- data/stripe_webhooks/2012-02-23/customer_discount_updated.yml +46 -0
- data/stripe_webhooks/2012-02-23/customer_subscription_created.yml +38 -0
- data/stripe_webhooks/2012-02-23/customer_subscription_deleted.yml +38 -0
- data/stripe_webhooks/2012-02-23/customer_subscription_trial_will_end.yml +38 -0
- data/stripe_webhooks/2012-02-23/customer_subscription_updated.yml +52 -0
- data/stripe_webhooks/2012-02-23/customer_updated.yml +40 -0
- data/stripe_webhooks/2012-02-23/invoice_created.yml +41 -0
- data/stripe_webhooks/2012-02-23/invoice_payment_failed.yml +41 -0
- data/stripe_webhooks/2012-02-23/invoice_payment_succeeded.yml +41 -0
- data/stripe_webhooks/2012-02-23/invoice_updated.yml +43 -0
- data/stripe_webhooks/2012-02-23/invoiceitem_created.yml +23 -0
- data/stripe_webhooks/2012-02-23/invoiceitem_deleted.yml +23 -0
- data/stripe_webhooks/2012-02-23/invoiceitem_updated.yml +25 -0
- data/stripe_webhooks/2012-02-23/plan_created.yml +21 -0
- data/stripe_webhooks/2012-02-23/plan_deleted.yml +21 -0
- data/stripe_webhooks/2012-02-23/plan_updated.yml +23 -0
- data/stripe_webhooks/2012-02-23/transfer_created.yml +29 -0
- data/stripe_webhooks/2012-02-23/transfer_failed.yml +29 -0
- data/stripe_webhooks/2012-02-23/transfer_paid.yml +29 -0
- data/stripe_webhooks/2012-02-23/transfer_updated.yml +31 -0
- metadata +41 -2
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
created: 1326853478
|
|
3
|
+
livemode: false
|
|
4
|
+
id: evt_00000000000000
|
|
5
|
+
type: transfer.failed
|
|
6
|
+
object: event
|
|
7
|
+
request:
|
|
8
|
+
data:
|
|
9
|
+
object:
|
|
10
|
+
id: tr_00000000000000
|
|
11
|
+
object: transfer
|
|
12
|
+
created: 1415277703
|
|
13
|
+
date: 1415277703
|
|
14
|
+
livemode: false
|
|
15
|
+
amount: 1100
|
|
16
|
+
currency: usd
|
|
17
|
+
status: failed
|
|
18
|
+
type: bank_account
|
|
19
|
+
balance_transaction: txn_00000000000000
|
|
20
|
+
description: Transfer to test@example.com
|
|
21
|
+
failure_message:
|
|
22
|
+
failure_code:
|
|
23
|
+
metadata: {}
|
|
24
|
+
statement_description:
|
|
25
|
+
recipient: rp_00000000000000
|
|
26
|
+
fee: 0
|
|
27
|
+
fee_details: []
|
|
28
|
+
statement_descriptor:
|
|
29
|
+
account:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
created: 1326853478
|
|
3
|
+
livemode: false
|
|
4
|
+
id: evt_00000000000000
|
|
5
|
+
type: transfer.paid
|
|
6
|
+
object: event
|
|
7
|
+
request:
|
|
8
|
+
data:
|
|
9
|
+
object:
|
|
10
|
+
id: tr_00000000000000
|
|
11
|
+
object: transfer
|
|
12
|
+
created: 1415277701
|
|
13
|
+
date: 1415277701
|
|
14
|
+
livemode: false
|
|
15
|
+
amount: 1100
|
|
16
|
+
currency: usd
|
|
17
|
+
status: paid
|
|
18
|
+
type: bank_account
|
|
19
|
+
balance_transaction: txn_00000000000000
|
|
20
|
+
description: Transfer to test@example.com
|
|
21
|
+
failure_message:
|
|
22
|
+
failure_code:
|
|
23
|
+
metadata: {}
|
|
24
|
+
statement_description:
|
|
25
|
+
recipient: rp_00000000000000
|
|
26
|
+
fee: 0
|
|
27
|
+
fee_details: []
|
|
28
|
+
statement_descriptor:
|
|
29
|
+
account:
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
created: 1326853478
|
|
3
|
+
livemode: false
|
|
4
|
+
id: evt_00000000000000
|
|
5
|
+
type: transfer.updated
|
|
6
|
+
object: event
|
|
7
|
+
request:
|
|
8
|
+
data:
|
|
9
|
+
object:
|
|
10
|
+
id: tr_00000000000000
|
|
11
|
+
object: transfer
|
|
12
|
+
created: 1415277698
|
|
13
|
+
date: 1415277698
|
|
14
|
+
livemode: false
|
|
15
|
+
amount: 1100
|
|
16
|
+
currency: usd
|
|
17
|
+
status: pending
|
|
18
|
+
type: bank_account
|
|
19
|
+
balance_transaction: txn_00000000000000
|
|
20
|
+
description: Transfer to test@example.com
|
|
21
|
+
failure_message:
|
|
22
|
+
failure_code:
|
|
23
|
+
metadata: {}
|
|
24
|
+
statement_description:
|
|
25
|
+
recipient: rp_00000000000000
|
|
26
|
+
fee: 0
|
|
27
|
+
fee_details: []
|
|
28
|
+
statement_descriptor:
|
|
29
|
+
account:
|
|
30
|
+
previous_attributes:
|
|
31
|
+
description: Old description
|
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.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Buttercloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -97,6 +97,45 @@ files:
|
|
|
97
97
|
- spec/spec_helper.rb
|
|
98
98
|
- spec/stripe_tester_spec.rb
|
|
99
99
|
- stripe_tester.gemspec
|
|
100
|
+
- stripe_webhooks/2012-02-23/account_updated.yml
|
|
101
|
+
- stripe_webhooks/2012-02-23/balance_available.yml
|
|
102
|
+
- stripe_webhooks/2012-02-23/charge_captured.yml
|
|
103
|
+
- stripe_webhooks/2012-02-23/charge_dispute_closed.yml
|
|
104
|
+
- stripe_webhooks/2012-02-23/charge_dispute_created.yml
|
|
105
|
+
- stripe_webhooks/2012-02-23/charge_dispute_updated.yml
|
|
106
|
+
- stripe_webhooks/2012-02-23/charge_failed.yml
|
|
107
|
+
- stripe_webhooks/2012-02-23/charge_refunded.yml
|
|
108
|
+
- stripe_webhooks/2012-02-23/charge_succeeded.yml
|
|
109
|
+
- stripe_webhooks/2012-02-23/charge_updated.yml
|
|
110
|
+
- stripe_webhooks/2012-02-23/coupon_created.yml
|
|
111
|
+
- stripe_webhooks/2012-02-23/coupon_deleted.yml
|
|
112
|
+
- stripe_webhooks/2012-02-23/customer_card_created.yml
|
|
113
|
+
- stripe_webhooks/2012-02-23/customer_card_deleted.yml
|
|
114
|
+
- stripe_webhooks/2012-02-23/customer_card_updated.yml
|
|
115
|
+
- stripe_webhooks/2012-02-23/customer_created.yml
|
|
116
|
+
- stripe_webhooks/2012-02-23/customer_deleted.yml
|
|
117
|
+
- stripe_webhooks/2012-02-23/customer_discount_created.yml
|
|
118
|
+
- stripe_webhooks/2012-02-23/customer_discount_deleted.yml
|
|
119
|
+
- stripe_webhooks/2012-02-23/customer_discount_updated.yml
|
|
120
|
+
- stripe_webhooks/2012-02-23/customer_subscription_created.yml
|
|
121
|
+
- stripe_webhooks/2012-02-23/customer_subscription_deleted.yml
|
|
122
|
+
- stripe_webhooks/2012-02-23/customer_subscription_trial_will_end.yml
|
|
123
|
+
- stripe_webhooks/2012-02-23/customer_subscription_updated.yml
|
|
124
|
+
- stripe_webhooks/2012-02-23/customer_updated.yml
|
|
125
|
+
- stripe_webhooks/2012-02-23/invoice_created.yml
|
|
126
|
+
- stripe_webhooks/2012-02-23/invoice_payment_failed.yml
|
|
127
|
+
- stripe_webhooks/2012-02-23/invoice_payment_succeeded.yml
|
|
128
|
+
- stripe_webhooks/2012-02-23/invoice_updated.yml
|
|
129
|
+
- stripe_webhooks/2012-02-23/invoiceitem_created.yml
|
|
130
|
+
- stripe_webhooks/2012-02-23/invoiceitem_deleted.yml
|
|
131
|
+
- stripe_webhooks/2012-02-23/invoiceitem_updated.yml
|
|
132
|
+
- stripe_webhooks/2012-02-23/plan_created.yml
|
|
133
|
+
- stripe_webhooks/2012-02-23/plan_deleted.yml
|
|
134
|
+
- stripe_webhooks/2012-02-23/plan_updated.yml
|
|
135
|
+
- stripe_webhooks/2012-02-23/transfer_created.yml
|
|
136
|
+
- stripe_webhooks/2012-02-23/transfer_failed.yml
|
|
137
|
+
- stripe_webhooks/2012-02-23/transfer_paid.yml
|
|
138
|
+
- stripe_webhooks/2012-02-23/transfer_updated.yml
|
|
100
139
|
- stripe_webhooks/2013-02-13/charge_failed.yml
|
|
101
140
|
- stripe_webhooks/2013-02-13/charge_refunded.yml
|
|
102
141
|
- stripe_webhooks/2013-02-13/charge_succeeded.yml
|