google4r-checkout 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +40 -0
- data/LICENSE +22 -0
- data/README +76 -0
- data/lib/google4r/checkout.rb +33 -0
- data/lib/google4r/checkout/commands.rb +260 -0
- data/lib/google4r/checkout/frontend.rb +108 -0
- data/lib/google4r/checkout/notifications.rb +549 -0
- data/lib/google4r/checkout/shared.rb +541 -0
- data/lib/google4r/checkout/xml_generation.rb +313 -0
- data/test/integration/checkout_command_test.rb +103 -0
- data/test/unit/address_test.rb +131 -0
- data/test/unit/area_test.rb +44 -0
- data/test/unit/checkout_command_test.rb +116 -0
- data/test/unit/checkout_command_xml_generator_test.rb +203 -0
- data/test/unit/command_test.rb +115 -0
- data/test/unit/flat_rate_shipping_test.rb +114 -0
- data/test/unit/frontend_test.rb +63 -0
- data/test/unit/item_test.rb +159 -0
- data/test/unit/marketing_preferences_test.rb +65 -0
- data/test/unit/merchant_code_test.rb +122 -0
- data/test/unit/new_order_notification_test.rb +115 -0
- data/test/unit/notification_acknowledgement_test.rb +43 -0
- data/test/unit/notification_handler_test.rb +93 -0
- data/test/unit/order_adjustment_test.rb +119 -0
- data/test/unit/order_state_change_notification_test.rb +159 -0
- data/test/unit/pickup_shipping_test.rb +70 -0
- data/test/unit/postal_area_test.rb +71 -0
- data/test/unit/private_data_parser_test.rb +68 -0
- data/test/unit/shipping_adjustment_test.rb +100 -0
- data/test/unit/shipping_method_test.rb +41 -0
- data/test/unit/shopping_cart_test.rb +146 -0
- data/test/unit/tax_rule_test.rb +70 -0
- data/test/unit/tax_table_test.rb +82 -0
- data/test/unit/us_country_area_test.rb +76 -0
- data/test/unit/us_state_area_test.rb +70 -0
- data/test/unit/us_zip_area_test.rb +66 -0
- data/test/unit/world_area_test.rb +48 -0
- data/var/cacert.pem +7815 -0
- metadata +92 -0
metadata
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.2
|
3
|
+
specification_version: 1
|
4
|
+
name: google4r-checkout
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2007-05-12 00:00:00 +02:00
|
8
|
+
summary: Ruby library to access the Google Checkout service and implement notification handlers.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email:
|
12
|
+
homepage:
|
13
|
+
rubyforge_project:
|
14
|
+
description: Ruby library to access the Google Checkout service and implement notification handlers.
|
15
|
+
autorequire: ""
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: false
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.8.4
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Manuel Holtgrewe
|
31
|
+
files:
|
32
|
+
- lib/google4r/checkout/commands.rb
|
33
|
+
- lib/google4r/checkout/frontend.rb
|
34
|
+
- lib/google4r/checkout/notifications.rb
|
35
|
+
- lib/google4r/checkout/shared.rb
|
36
|
+
- lib/google4r/checkout/xml_generation.rb
|
37
|
+
- lib/google4r/checkout.rb
|
38
|
+
- var/cacert.pem
|
39
|
+
- README
|
40
|
+
- LICENSE
|
41
|
+
- CHANGES
|
42
|
+
test_files:
|
43
|
+
- test/integration/checkout_command_test.rb
|
44
|
+
- test/unit/address_test.rb
|
45
|
+
- test/unit/area_test.rb
|
46
|
+
- test/unit/checkout_command_test.rb
|
47
|
+
- test/unit/checkout_command_xml_generator_test.rb
|
48
|
+
- test/unit/command_test.rb
|
49
|
+
- test/unit/flat_rate_shipping_test.rb
|
50
|
+
- test/unit/frontend_test.rb
|
51
|
+
- test/unit/item_test.rb
|
52
|
+
- test/unit/marketing_preferences_test.rb
|
53
|
+
- test/unit/merchant_code_test.rb
|
54
|
+
- test/unit/new_order_notification_test.rb
|
55
|
+
- test/unit/notification_acknowledgement_test.rb
|
56
|
+
- test/unit/notification_handler_test.rb
|
57
|
+
- test/unit/order_adjustment_test.rb
|
58
|
+
- test/unit/order_state_change_notification_test.rb
|
59
|
+
- test/unit/pickup_shipping_test.rb
|
60
|
+
- test/unit/postal_area_test.rb
|
61
|
+
- test/unit/private_data_parser_test.rb
|
62
|
+
- test/unit/shipping_adjustment_test.rb
|
63
|
+
- test/unit/shipping_method_test.rb
|
64
|
+
- test/unit/shopping_cart_test.rb
|
65
|
+
- test/unit/tax_rule_test.rb
|
66
|
+
- test/unit/tax_table_test.rb
|
67
|
+
- test/unit/us_country_area_test.rb
|
68
|
+
- test/unit/us_state_area_test.rb
|
69
|
+
- test/unit/us_zip_area_test.rb
|
70
|
+
- test/unit/world_area_test.rb
|
71
|
+
rdoc_options: []
|
72
|
+
|
73
|
+
extra_rdoc_files:
|
74
|
+
- README
|
75
|
+
- LICENSE
|
76
|
+
- CHANGES
|
77
|
+
executables: []
|
78
|
+
|
79
|
+
extensions: []
|
80
|
+
|
81
|
+
requirements: []
|
82
|
+
|
83
|
+
dependencies:
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: money
|
86
|
+
version_requirement:
|
87
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: 1.7.1
|
92
|
+
version:
|