google-checkout 0.5.0 → 0.5.1
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.
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
@@ -26,6 +26,7 @@ spec/fixtures/google/notifications/authorization-amount-notification.xml
|
|
26
26
|
spec/fixtures/google/notifications/charge-amount-notification.xml
|
27
27
|
spec/fixtures/google/notifications/chargeback-amount-notification.xml
|
28
28
|
spec/fixtures/google/notifications/new-order-notification.xml
|
29
|
+
spec/fixtures/google/notifications/order-state-change-notification-missing.xml
|
29
30
|
spec/fixtures/google/notifications/order-state-change-notification.xml
|
30
31
|
spec/fixtures/google/notifications/refund-amount-notification.xml
|
31
32
|
spec/fixtures/google/notifications/risk-information-notification.xml
|
data/lib/google-checkout.rb
CHANGED
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<order-state-change-notification xmlns="http://checkout.google.com/schema/2"
|
3
|
+
serial-number="bea6bc1b-e1e2-44fe-80ff-0180e33a2614">
|
4
|
+
<google-order-number>861501633833620</google-order-number>
|
5
|
+
<new-financial-order-state>CHARGING</new-financial-order-state>
|
6
|
+
<new-fulfillment-order-state>NEW</new-fulfillment-order-state>
|
7
|
+
<previous-financial-order-state>CHARGEABLE</previous-financial-order-state>
|
8
|
+
<previous-fulfillment-order-state>NEW</previous-fulfillment-order-state>
|
9
|
+
<reason>The reason goes here, if there is one.</reason>
|
10
|
+
<timestamp>2006-05-03T17:32:11</timestamp>
|
11
|
+
</order-state-change-notification>
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-checkout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 1
|
10
|
+
version: 0.5.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Geoffrey Grosenbach
|
@@ -195,6 +195,7 @@ files:
|
|
195
195
|
- spec/fixtures/google/notifications/charge-amount-notification.xml
|
196
196
|
- spec/fixtures/google/notifications/chargeback-amount-notification.xml
|
197
197
|
- spec/fixtures/google/notifications/new-order-notification.xml
|
198
|
+
- spec/fixtures/google/notifications/order-state-change-notification-missing.xml
|
198
199
|
- spec/fixtures/google/notifications/order-state-change-notification.xml
|
199
200
|
- spec/fixtures/google/notifications/refund-amount-notification.xml
|
200
201
|
- spec/fixtures/google/notifications/risk-information-notification.xml
|