alandipert-ruby-aaws 0.7.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.
Files changed (60) hide show
  1. data/COPYING +340 -0
  2. data/INSTALL +260 -0
  3. data/NEWS +710 -0
  4. data/README +653 -0
  5. data/README.rdoc +145 -0
  6. data/Rakefile +35 -0
  7. data/VERSION +1 -0
  8. data/example/batch_operation +27 -0
  9. data/example/browse_node_lookup1 +46 -0
  10. data/example/customer_content_lookup1 +27 -0
  11. data/example/customer_content_search1 +21 -0
  12. data/example/example1 +87 -0
  13. data/example/help1 +25 -0
  14. data/example/item_lookup1 +56 -0
  15. data/example/item_lookup2 +56 -0
  16. data/example/item_search1 +30 -0
  17. data/example/item_search2 +37 -0
  18. data/example/item_search3 +23 -0
  19. data/example/list_lookup1 +29 -0
  20. data/example/list_search1 +30 -0
  21. data/example/multiple_operation1 +68 -0
  22. data/example/seller_listing_lookup1 +30 -0
  23. data/example/seller_listing_search1 +28 -0
  24. data/example/seller_lookup1 +45 -0
  25. data/example/shopping_cart1 +42 -0
  26. data/example/similarity_lookup1 +48 -0
  27. data/example/tag_lookup1 +34 -0
  28. data/example/transaction_lookup1 +26 -0
  29. data/example/vehicle_search +22 -0
  30. data/lib/amazon/aws/cache.rb +141 -0
  31. data/lib/amazon/aws/search.rb +342 -0
  32. data/lib/amazon/aws/shoppingcart.rb +504 -0
  33. data/lib/amazon/aws.rb +1217 -0
  34. data/lib/amazon/locale.rb +102 -0
  35. data/lib/amazon.rb +145 -0
  36. data/ruby-aaws.gemspec +117 -0
  37. data/setup.rb +1306 -0
  38. data/test/setup.rb +34 -0
  39. data/test/tc_amazon.rb +20 -0
  40. data/test/tc_aws.rb +151 -0
  41. data/test/tc_browse_node_lookup.rb +62 -0
  42. data/test/tc_customer_content_lookup.rb +64 -0
  43. data/test/tc_help.rb +60 -0
  44. data/test/tc_item_lookup.rb +60 -0
  45. data/test/tc_item_search.rb +106 -0
  46. data/test/tc_list_lookup.rb +55 -0
  47. data/test/tc_list_search.rb +55 -0
  48. data/test/tc_multiple_operation.rb +265 -0
  49. data/test/tc_operation_request.rb +58 -0
  50. data/test/tc_seller_listing_lookup.rb +58 -0
  51. data/test/tc_seller_listing_search.rb +70 -0
  52. data/test/tc_seller_lookup.rb +54 -0
  53. data/test/tc_serialisation.rb +103 -0
  54. data/test/tc_shopping_cart.rb +214 -0
  55. data/test/tc_similarity_lookup.rb +59 -0
  56. data/test/tc_tag_lookup.rb +35 -0
  57. data/test/tc_transaction_lookup.rb +35 -0
  58. data/test/tc_vehicle_operations.rb +106 -0
  59. data/test/ts_aws.rb +24 -0
  60. metadata +135 -0
@@ -0,0 +1,214 @@
1
+ # $Id: tc_shopping_cart.rb,v 1.6 2009/03/27 14:00:22 ianmacd Exp $
2
+ #
3
+
4
+ require 'test/unit'
5
+ require './setup'
6
+ require 'amazon/aws/shoppingcart'
7
+
8
+ include Amazon::AWS::ShoppingCart
9
+
10
+ class TestShoppingCart < AWSTest
11
+
12
+ def test_shopping_cart1
13
+ cart = Cart.new
14
+ cart.locale = 'uk'
15
+
16
+ # Check that initial quantities are zero.
17
+ #
18
+ items = cart.items
19
+ sfl_items = cart.saved_for_later_items
20
+ assert_equal( 0, items.size )
21
+ assert_equal( 0, sfl_items.size )
22
+
23
+ # Create a cart with three items. The last two are given as multiple
24
+ # single-element hashes. MergeCart is false.
25
+ #
26
+ cart.cart_create( :ASIN, 'B001CB0UJC', 3, false,
27
+ { 'B000WC4AH0' => 2 },
28
+ { 'B0006L16N8' => 1 } )
29
+ items = cart.items
30
+
31
+ # Check that the quantities match what we expect.
32
+ #
33
+ assert_equal( 3, items.size )
34
+ item = items.find { |item| item.asin == 'B001CB0UJC' }
35
+ assert_equal( '3', item.quantity[0] )
36
+ item = items.find { |item| item.asin == 'B000WC4AH0' }
37
+ assert_equal( '2', item.quantity[0] )
38
+ item = items.find { |item| item.asin == 'B0006L16N8' }
39
+ assert_equal( '1', item.quantity[0] )
40
+
41
+ # Check purchase URL.
42
+ #
43
+
44
+ # Check for correct Cart Id.
45
+ #
46
+ assert_match( /cart-id=#{cart.cart_id}/,
47
+ cart.purchase_url,
48
+ 'Cart Id incorrect' )
49
+
50
+ # Check for correct value of MergeCart.
51
+ #
52
+ assert_match( /MergeCart=False/,
53
+ cart.purchase_url,
54
+ 'MergeCart is not False' )
55
+
56
+ # Clear cart.
57
+ #
58
+ cart.cart_clear
59
+
60
+ # Ensure that clearing the cart actually empties it.
61
+ #
62
+ assert_equal( 0, cart.cart_items.size )
63
+ end
64
+
65
+ def test_shopping_cart2
66
+ cart = Cart.new
67
+ cart.locale = 'uk'
68
+
69
+ # Create a cart with three items. The last two are given in a single
70
+ # hash. MergeCart is true. Cart#create is used as an alias of
71
+ # Cart#cart_create.
72
+ #
73
+ cart.create( :ASIN, 'B001CB0UJC', 1, true,
74
+ { 'B000WC4AH0' => 2,
75
+ 'B0006L16N8' => 3 } )
76
+ items = cart.items
77
+
78
+ # Check that the quantities match what we expect.
79
+ #
80
+ assert_equal( 3, items.size )
81
+ item = items.find { |item| item.asin == 'B001CB0UJC' }
82
+ assert_equal( '1', item.quantity[0] )
83
+ item = items.find { |item| item.asin == 'B000WC4AH0' }
84
+ assert_equal( '2', item.quantity[0] )
85
+ item = items.find { |item| item.asin == 'B0006L16N8' }
86
+ assert_equal( '3', item.quantity[0] )
87
+
88
+ # Check purchase URL.
89
+ #
90
+
91
+ # Check for correct Cart Id.
92
+ #
93
+ assert_match( /cart-id=#{cart.cart_id}/,
94
+ cart.purchase_url,
95
+ 'Cart Id incorrect' )
96
+
97
+ # Check for correct value of MergeCart.
98
+ #
99
+ assert_match( /MergeCart=True/,
100
+ cart.purchase_url,
101
+ 'MergeCart is not True' )
102
+
103
+ # Add some items.
104
+ #
105
+ cart.cart_add( :ASIN, 'B0014C2BL4', 1,
106
+ { 'B00006BCKL' => 1,
107
+ 'B0001XLXYI' => 4 },
108
+ { 'B0013F2M52' => 3,
109
+ 'B000HCPSR6' => 2 } )
110
+
111
+ # Check that the quantities match what we expect.
112
+ #
113
+ items = cart.items
114
+ assert_equal( 8, items.size )
115
+ item = items.find { |item| item.asin == 'B0014C2BL4' }
116
+ assert_equal( '1', item.quantity[0] )
117
+ item = items.find { |item| item.asin == 'B00006BCKL' }
118
+ assert_equal( '1', item.quantity[0] )
119
+ item = items.find { |item| item.asin == 'B0001XLXYI' }
120
+ assert_equal( '4', item.quantity[0] )
121
+ item = items.find { |item| item.asin == 'B0013F2M52' }
122
+ assert_equal( '3', item.quantity[0] )
123
+ item = items.find { |item| item.asin == 'B000HCPSR6' }
124
+ assert_equal( '2', item.quantity[0] )
125
+
126
+ # Modify an item quantity.
127
+ #
128
+ cart.cart_modify( :ASIN, 'B001CB0UJC', 2 )
129
+ items = cart.items
130
+ assert_equal( 8, items.size )
131
+ item = items.find { |item| item.asin == 'B001CB0UJC' }
132
+ assert_equal( '2', item.quantity[0] )
133
+
134
+ # Move item to 'Save For Later' area.
135
+ #
136
+ cart.cart_modify( :ASIN, 'B0014C2BL4', 1, true )
137
+ sfl_items = cart.saved_for_later_items
138
+ assert_equal( 1, sfl_items.size )
139
+ item = sfl_items.find { |item| item.asin == 'B0014C2BL4' }
140
+ assert_equal( '1', item.quantity[0] )
141
+ items = cart.items
142
+ assert_equal( 7, items.size )
143
+ assert( ! cart.active?( :ASIN, 'B0014C2BL4' ) )
144
+
145
+ # Move item back to 'Active' area.
146
+ #
147
+ cart.cart_modify( :ASIN, 'B0014C2BL4', 1, false )
148
+ items = cart.items
149
+ assert_equal( 8, items.size )
150
+ item = items.find { |item| item.asin == 'B0014C2BL4' }
151
+ assert_equal( '1', item.quantity[0] )
152
+ sfl_items = cart.saved_for_later_items
153
+ assert_equal( 0, sfl_items.size )
154
+ assert( ! cart.saved_for_later?( :ASIN, 'B0014C2BL4' ) )
155
+
156
+ # Remove an item.
157
+ #
158
+ cart.cart_modify( :ASIN, 'B0014C2BL4', 0 )
159
+
160
+ # Check that the number of items in the cart has been reduced by one.
161
+ #
162
+ items = cart.items
163
+ assert_equal( 7, items.size )
164
+
165
+ # Check that the item is no longer in the cart.
166
+ #
167
+ assert( ! cart.include?( :ASIN, 'B0014C2BL4' ) )
168
+
169
+ # Check that modifying non-existent item raises exception.
170
+ #
171
+ assert_raise( Amazon::AWS::ShoppingCart::CartError ) do
172
+ cart.cart_modify( :ASIN, 'B0014C2BL4', 1 )
173
+ end
174
+
175
+ # Move another item to the 'Save For Later' area.
176
+ #
177
+ cart.cart_modify( :ASIN, 'B001CB0UJC', 2, true )
178
+ items = cart.items
179
+ assert_equal( 6, items.size )
180
+ sfl_items = cart.saved_for_later_items
181
+ assert_equal( 1, sfl_items.size )
182
+
183
+ # Now remove that item while it's still in the 'Save For Later' area.
184
+ #
185
+ cart.cart_modify( :ASIN, 'B001CB0UJC', 0 )
186
+ items = cart.items
187
+ assert_equal( 6, items.size )
188
+ sfl_items = cart.saved_for_later_items
189
+ assert_equal( 0, sfl_items.size )
190
+
191
+ # Ensure that the item is no longer in either area of the cart.
192
+ #
193
+ assert( ! cart.include?( :ASIN, 'B0014C2BL4' ) )
194
+ assert( ! cart.active?( :ASIN, 'B0014C2BL4' ) )
195
+ assert( ! cart.saved_for_later?( :ASIN, 'B0014C2BL4' ) )
196
+
197
+ # Check that modifying non-existent item raises exception.
198
+ #
199
+ assert_raise( Amazon::AWS::ShoppingCart::CartError ) do
200
+ cart.cart_modify( :ASIN, 'B00151HZA6', 1 )
201
+ end
202
+
203
+ # Check that retrieving the cart at a later time works properly.
204
+ #
205
+ old_cart = cart
206
+ cart = Cart.new
207
+ cart.locale = 'uk'
208
+ cart.cart_get( old_cart.cart_id, old_cart.hmac )
209
+ assert_equal( old_cart.cart_id, cart.cart_id )
210
+ assert_equal( old_cart.hmac, cart.hmac )
211
+ assert_equal( old_cart.items, cart.items )
212
+ end
213
+
214
+ end
@@ -0,0 +1,59 @@
1
+ # $Id: tc_similarity_lookup.rb,v 1.1 2009/06/03 10:29:24 ianmacd Exp $
2
+ #
3
+
4
+ require 'test/unit'
5
+ require './setup'
6
+
7
+ class TestSimilarityLookup < AWSTest
8
+
9
+ def test_similarity_lookup
10
+
11
+ sl = SimilarityLookup.new( [ 'B000AE4QEC', 'B000051WBE' ] )
12
+ rg = ResponseGroup.new( :Subjects )
13
+ response = @req.search( sl, rg )
14
+
15
+ items = response.similarity_lookup_response[0].items
16
+
17
+ assert_match( /^\w+/, items.item[0].subjects.subject[0] )
18
+ assert_match( /^\w+/, items.item[1].subjects.subject[0] )
19
+
20
+ end
21
+
22
+ def test_similarity_lookup_no_response_group
23
+
24
+ sl = SimilarityLookup.new( [ 'B000AE4QEC', 'B000051WBE' ] )
25
+ sl.response_group = ResponseGroup.new( :Subjects )
26
+ response = @req.search( sl, nil )
27
+
28
+ items = response.similarity_lookup_response[0].items
29
+
30
+ assert_match( /^\w+/, items.item[0].subjects.subject[0] )
31
+ assert_match( /^\w+/, items.item[1].subjects.subject[0] )
32
+
33
+ end
34
+
35
+ def test_similarity_lookup_class_method
36
+
37
+ response = Amazon::AWS.similarity_lookup( [ 'B000AE4QEC', 'B000051WBE' ] )
38
+
39
+ items = response.similarity_lookup_response[0].items
40
+
41
+ assert_match( /^http:/, items.item[0].detail_page_url )
42
+ assert_match( /^http:/, items.item[1].detail_page_url )
43
+
44
+ end
45
+
46
+ def test_item_search_class_method_block
47
+
48
+ Amazon::AWS.similarity_lookup( [ 'B000AE4QEC', 'B000051WBE' ] ) do |r|
49
+
50
+ items = r.similarity_lookup_response[0].items
51
+
52
+ assert_match( /^http:/, items.item[0].detail_page_url )
53
+ assert_match( /^http:/, items.item[1].detail_page_url )
54
+
55
+ end
56
+
57
+ end
58
+
59
+ end
@@ -0,0 +1,35 @@
1
+ # $Id: tc_tag_lookup.rb,v 1.1 2009/06/03 23:20:37 ianmacd Exp $
2
+ #
3
+
4
+ require 'test/unit'
5
+ require './setup'
6
+
7
+ class TestTagLookup < AWSTest
8
+
9
+ def test_tag_lookup
10
+
11
+ @req.locale = 'us'
12
+ tl = TagLookup.new( 'Awful' )
13
+ rg = ResponseGroup.new( :Tags, :TagsSummary )
14
+ response = @req.search( tl, rg )
15
+
16
+ tag = response.kernel
17
+
18
+ assert_equal( '2005-11-21 16:46:53', tag.first_tagging.time )
19
+
20
+ end
21
+
22
+ def test_tag_lookup_no_response_group
23
+
24
+ @req.locale = 'us'
25
+ tl = TagLookup.new( 'Awful' )
26
+ tl.response_group = ResponseGroup.new( :Tags, :TagsSummary )
27
+ response = @req.search( tl, nil )
28
+
29
+ tag = response.kernel
30
+
31
+ assert_equal( '2005-11-21 16:46:53', tag.first_tagging.time )
32
+
33
+ end
34
+
35
+ end
@@ -0,0 +1,35 @@
1
+ # $Id: tc_transaction_lookup.rb,v 1.1 2009/06/03 23:25:33 ianmacd Exp $
2
+ #
3
+
4
+ require 'test/unit'
5
+ require './setup'
6
+
7
+ class TestTransactionLookup < AWSTest
8
+
9
+ def test_transaction_lookup
10
+
11
+ @req.locale = 'us'
12
+ tl = TransactionLookup.new( '103-5663398-5028241' )
13
+ rg = ResponseGroup.new( :TransactionDetails )
14
+ response = @req.search( tl, rg )
15
+
16
+ trans = response.kernel
17
+
18
+ assert_equal( '2008-04-13T23:49:38', trans.transaction_date )
19
+
20
+ end
21
+
22
+ def test_transaction_lookup_no_response_group
23
+
24
+ @req.locale = 'us'
25
+ tl = TransactionLookup.new( '103-5663398-5028241' )
26
+ tl.response_group = ResponseGroup.new( :TransactionDetails )
27
+ response = @req.search( tl, nil )
28
+
29
+ trans = response.kernel
30
+
31
+ assert_equal( '2008-04-13T23:49:38', trans.transaction_date )
32
+
33
+ end
34
+
35
+ end
@@ -0,0 +1,106 @@
1
+ #!/usr/bin/ruby -w
2
+ #
3
+ # $Id: tc_vehicle_operations.rb,v 1.1 2009/02/19 15:50:03 ianmacd Exp $
4
+
5
+ require 'test/unit'
6
+ require './setup'
7
+
8
+ class TestVehicles < AWSTest
9
+
10
+ def test_vehicle_search
11
+ @req.locale = 'us'
12
+
13
+ # Get all cars for year 2008.
14
+ #
15
+ vs = VehicleSearch.new( { 'Year' => 2008 } )
16
+ rg = ResponseGroup.new( 'VehicleMakes' )
17
+ response = @req.search( vs, rg )
18
+
19
+ makes = response.vehicle_search_response[0].vehicle_years[0].
20
+ vehicle_year[0].vehicle_makes[0].vehicle_make
21
+ assert( makes.size > 0 )
22
+
23
+ make_id = makes.find { |make| make.make_name == 'Audi' }.make_id.to_i
24
+
25
+
26
+ # Get all Audi models from 2008.
27
+ #
28
+ vs = VehicleSearch.new( { 'Year' => 2008,
29
+ 'MakeId' => make_id } )
30
+ rg = ResponseGroup.new( 'VehicleModels' )
31
+ response = @req.search( vs, rg )
32
+
33
+ models = response.vehicle_search_response[0].vehicle_years[0].
34
+ vehicle_year[0].vehicle_makes[0].vehicle_make[0].
35
+ vehicle_models[0].vehicle_model
36
+ assert( models.size > 0 )
37
+
38
+ model_id = models.find { |model| model.model_name == 'R8' }.model_id.to_i
39
+
40
+ # Get all Audi R8 trim packages from 2008.
41
+ #
42
+ vs = VehicleSearch.new( { 'Year' => 2008,
43
+ 'MakeId' => make_id,
44
+ 'ModelId' => model_id } )
45
+ rg = ResponseGroup.new( 'VehicleTrims' )
46
+ response = @req.search( vs, rg )
47
+
48
+ trims = response.vehicle_search_response[0].vehicle_years[0].
49
+ vehicle_year[0].vehicle_makes[0].vehicle_make[0].
50
+ vehicle_models[0].vehicle_model[0].vehicle_trims[0].vehicle_trim
51
+ assert( trims.size > 0 )
52
+
53
+ trim_id = trims.find { |trim| trim.trim_name == 'Base' }.trim_id.to_i
54
+
55
+ vs = VehicleSearch.new( { 'Year' => 2008,
56
+ 'MakeId' => make_id,
57
+ 'ModelId' => model_id,
58
+ 'TrimId' => trim_id } )
59
+ rg = ResponseGroup.new( 'VehicleOptions' )
60
+ response = @req.search( vs, rg )
61
+
62
+ options = response.vehicle_search_response[0].vehicle_years[0].
63
+ vehicle_year[0].vehicle_makes[0].vehicle_make[0].
64
+ vehicle_models[0].vehicle_model[0].vehicle_trims[0].
65
+ vehicle_trim[0].vehicle_options[0]
66
+ engine = options.vehicle_engine_options.vehicle_engine
67
+ engine_name = engine.engine_name
68
+ engine_id = engine.engine_id
69
+ assert_not_nil( engine_name )
70
+
71
+ # Find parts for our 2008 Audi R8 with Base trim and whatever engine that
72
+ # trim package has.
73
+ #
74
+ vps = VehiclePartSearch.new( 2008, make_id, model_id,
75
+ { 'TrimId' => trim_id,
76
+ 'EngineId' => engine_id } )
77
+ rg = ResponseGroup.new( 'VehicleParts' )
78
+ response = @req.search( vps, rg )
79
+
80
+ parts = response.vehicle_part_search_response[0].vehicle_parts[0].part
81
+ assert( parts.size > 0 )
82
+
83
+ # Now, we do a reverse look-up.
84
+ #
85
+ # Go through all parts and test to see if they fit in our 2008 Audi R8
86
+ # Base trim. The answer should always be yes.
87
+ #
88
+ # part = parts[rand( parts.size - 1 )].item.asin
89
+
90
+ parts.each do |part|
91
+ vpl = VehiclePartLookup.new( part.item.asin,
92
+ { 'Year' => 2008,
93
+ 'MakeId' => make_id,
94
+ 'ModelId' => model_id,
95
+ 'TrimId' => trim_id } )
96
+
97
+ rg = ResponseGroup.new( 'VehiclePartFit' )
98
+ response = @req.search( vpl, rg )
99
+
100
+ fit = response.vehicle_part_lookup_response[0].vehicle_parts[0].part.
101
+ vehicle_part_fit.is_fit
102
+ assert_equal( 'YES', fit )
103
+ end
104
+ end
105
+
106
+ end
data/test/ts_aws.rb ADDED
@@ -0,0 +1,24 @@
1
+ # $Id: ts_aws.rb,v 1.17 2009/06/03 23:25:33 ianmacd Exp $
2
+ #
3
+
4
+ require 'test/unit'
5
+ require 'tc_amazon'
6
+ require 'tc_aws'
7
+ require 'tc_browse_node_lookup'
8
+ require 'tc_customer_content_lookup'
9
+ require 'tc_help'
10
+ require 'tc_item_lookup'
11
+ require 'tc_item_search'
12
+ require 'tc_list_lookup'
13
+ require 'tc_list_search'
14
+ require 'tc_multiple_operation'
15
+ require 'tc_operation_request'
16
+ require 'tc_seller_listing_lookup'
17
+ require 'tc_seller_listing_search'
18
+ require 'tc_seller_lookup'
19
+ require 'tc_serialisation'
20
+ require 'tc_similarity_lookup'
21
+ require 'tc_shopping_cart'
22
+ require 'tc_tag_lookup'
23
+ require 'tc_transaction_lookup'
24
+ require 'tc_vehicle_operations'
metadata ADDED
@@ -0,0 +1,135 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: alandipert-ruby-aaws
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.1
5
+ platform: ruby
6
+ authors:
7
+ - Ian Macdonald
8
+ - Jamie Dyer
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-08-17 00:00:00 -07:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description: Ruby interface to Amazon Associates Web Services
18
+ email: ian@caliban.org
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ extra_rdoc_files:
24
+ - README
25
+ - README.rdoc
26
+ files:
27
+ - COPYING
28
+ - INSTALL
29
+ - NEWS
30
+ - README
31
+ - README.rdoc
32
+ - Rakefile
33
+ - VERSION
34
+ - example/batch_operation
35
+ - example/browse_node_lookup1
36
+ - example/customer_content_lookup1
37
+ - example/customer_content_search1
38
+ - example/example1
39
+ - example/help1
40
+ - example/item_lookup1
41
+ - example/item_lookup2
42
+ - example/item_search1
43
+ - example/item_search2
44
+ - example/item_search3
45
+ - example/list_lookup1
46
+ - example/list_search1
47
+ - example/multiple_operation1
48
+ - example/seller_listing_lookup1
49
+ - example/seller_listing_search1
50
+ - example/seller_lookup1
51
+ - example/shopping_cart1
52
+ - example/similarity_lookup1
53
+ - example/tag_lookup1
54
+ - example/transaction_lookup1
55
+ - example/vehicle_search
56
+ - lib/amazon.rb
57
+ - lib/amazon/aws.rb
58
+ - lib/amazon/aws/cache.rb
59
+ - lib/amazon/aws/search.rb
60
+ - lib/amazon/aws/shoppingcart.rb
61
+ - lib/amazon/locale.rb
62
+ - ruby-aaws.gemspec
63
+ - setup.rb
64
+ - test/setup.rb
65
+ - test/tc_amazon.rb
66
+ - test/tc_aws.rb
67
+ - test/tc_browse_node_lookup.rb
68
+ - test/tc_customer_content_lookup.rb
69
+ - test/tc_help.rb
70
+ - test/tc_item_lookup.rb
71
+ - test/tc_item_search.rb
72
+ - test/tc_list_lookup.rb
73
+ - test/tc_list_search.rb
74
+ - test/tc_multiple_operation.rb
75
+ - test/tc_operation_request.rb
76
+ - test/tc_seller_listing_lookup.rb
77
+ - test/tc_seller_listing_search.rb
78
+ - test/tc_seller_lookup.rb
79
+ - test/tc_serialisation.rb
80
+ - test/tc_shopping_cart.rb
81
+ - test/tc_similarity_lookup.rb
82
+ - test/tc_tag_lookup.rb
83
+ - test/tc_transaction_lookup.rb
84
+ - test/tc_vehicle_operations.rb
85
+ - test/ts_aws.rb
86
+ has_rdoc: true
87
+ homepage: http://www.caliban.org/ruby/ruby-aws/
88
+ licenses:
89
+ post_install_message:
90
+ rdoc_options:
91
+ - --charset=UTF-8
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: "0"
99
+ version:
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: "0"
105
+ version:
106
+ requirements: []
107
+
108
+ rubyforge_project:
109
+ rubygems_version: 1.3.5
110
+ signing_key:
111
+ specification_version: 2
112
+ summary: Ruby interface to Amazon Associates Web Services
113
+ test_files:
114
+ - test/setup.rb
115
+ - test/tc_amazon.rb
116
+ - test/tc_aws.rb
117
+ - test/tc_browse_node_lookup.rb
118
+ - test/tc_customer_content_lookup.rb
119
+ - test/tc_help.rb
120
+ - test/tc_item_lookup.rb
121
+ - test/tc_item_search.rb
122
+ - test/tc_list_lookup.rb
123
+ - test/tc_list_search.rb
124
+ - test/tc_multiple_operation.rb
125
+ - test/tc_operation_request.rb
126
+ - test/tc_seller_listing_lookup.rb
127
+ - test/tc_seller_listing_search.rb
128
+ - test/tc_seller_lookup.rb
129
+ - test/tc_serialisation.rb
130
+ - test/tc_shopping_cart.rb
131
+ - test/tc_similarity_lookup.rb
132
+ - test/tc_tag_lookup.rb
133
+ - test/tc_transaction_lookup.rb
134
+ - test/tc_vehicle_operations.rb
135
+ - test/ts_aws.rb