google4r-checkout 0.1.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +16 -2
- data/README +1 -19
- data/lib/google4r/checkout/commands.rb +208 -23
- data/lib/google4r/checkout/frontend.rb +62 -2
- data/lib/google4r/checkout/notifications.rb +302 -11
- data/lib/google4r/checkout/shared.rb +3 -3
- data/lib/google4r/checkout/xml_generation.rb +429 -225
- data/test/unit/add_merchant_order_number_command_test.rb +210 -0
- data/test/unit/add_tracking_data_command_test.rb +225 -0
- data/test/unit/archive_order_command_test.rb +198 -0
- data/test/unit/authorization_amount_notification_test.rb +207 -0
- data/test/unit/authorize_order_command_test.rb +198 -0
- data/test/unit/cancel_order_command_test.rb +83 -0
- data/test/unit/charge_amount_notification_test.rb +64 -0
- data/test/unit/charge_order_command_test.rb +77 -0
- data/test/unit/chargeback_amount_notification_test.rb +195 -0
- data/test/unit/checkout_command_xml_generator_test.rb +12 -4
- data/test/unit/deliver_order_command_test.rb +70 -0
- data/test/unit/frontend_test.rb +14 -1
- data/test/unit/notification_handler_test.rb +28 -8
- data/test/unit/order_state_change_notification_test.rb +1 -2
- data/test/unit/refund_amount_notification_test.rb +195 -0
- data/test/unit/refund_order_command_test.rb +258 -0
- data/test/unit/risk_information_notification_test.rb +98 -0
- data/test/unit/send_buyer_message_command_test.rb +219 -0
- data/test/unit/unarchive_order_command_test.rb +198 -0
- metadata +17 -2
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: google4r-checkout
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version:
|
7
|
-
date: 2007-
|
6
|
+
version: 1.0.0
|
7
|
+
date: 2007-08-04 00:00:00 +02:00
|
8
8
|
summary: Ruby library to access the Google Checkout service and implement notification handlers.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -41,11 +41,21 @@ files:
|
|
41
41
|
- CHANGES
|
42
42
|
test_files:
|
43
43
|
- test/integration/checkout_command_test.rb
|
44
|
+
- test/unit/add_merchant_order_number_command_test.rb
|
45
|
+
- test/unit/add_tracking_data_command_test.rb
|
44
46
|
- test/unit/address_test.rb
|
47
|
+
- test/unit/archive_order_command_test.rb
|
45
48
|
- test/unit/area_test.rb
|
49
|
+
- test/unit/authorization_amount_notification_test.rb
|
50
|
+
- test/unit/authorize_order_command_test.rb
|
51
|
+
- test/unit/cancel_order_command_test.rb
|
52
|
+
- test/unit/charge_amount_notification_test.rb
|
53
|
+
- test/unit/charge_order_command_test.rb
|
54
|
+
- test/unit/chargeback_amount_notification_test.rb
|
46
55
|
- test/unit/checkout_command_test.rb
|
47
56
|
- test/unit/checkout_command_xml_generator_test.rb
|
48
57
|
- test/unit/command_test.rb
|
58
|
+
- test/unit/deliver_order_command_test.rb
|
49
59
|
- test/unit/flat_rate_shipping_test.rb
|
50
60
|
- test/unit/frontend_test.rb
|
51
61
|
- test/unit/item_test.rb
|
@@ -59,11 +69,16 @@ test_files:
|
|
59
69
|
- test/unit/pickup_shipping_test.rb
|
60
70
|
- test/unit/postal_area_test.rb
|
61
71
|
- test/unit/private_data_parser_test.rb
|
72
|
+
- test/unit/refund_amount_notification_test.rb
|
73
|
+
- test/unit/refund_order_command_test.rb
|
74
|
+
- test/unit/risk_information_notification_test.rb
|
75
|
+
- test/unit/send_buyer_message_command_test.rb
|
62
76
|
- test/unit/shipping_adjustment_test.rb
|
63
77
|
- test/unit/shipping_method_test.rb
|
64
78
|
- test/unit/shopping_cart_test.rb
|
65
79
|
- test/unit/tax_rule_test.rb
|
66
80
|
- test/unit/tax_table_test.rb
|
81
|
+
- test/unit/unarchive_order_command_test.rb
|
67
82
|
- test/unit/us_country_area_test.rb
|
68
83
|
- test/unit/us_state_area_test.rb
|
69
84
|
- test/unit/us_zip_area_test.rb
|