kernow-ruby-aaws 0.5.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.
- data/COPYING +340 -0
- data/INSTALL +259 -0
- data/NEWS +382 -0
- data/README +566 -0
- data/README.rdoc +129 -0
- data/Rakefile +54 -0
- data/example/browse_node_lookup1 +46 -0
- data/example/customer_content_lookup1 +27 -0
- data/example/customer_content_search1 +21 -0
- data/example/example1 +87 -0
- data/example/help1 +25 -0
- data/example/item_lookup1 +55 -0
- data/example/item_lookup2 +55 -0
- data/example/item_search1 +30 -0
- data/example/item_search2 +37 -0
- data/example/item_search3 +23 -0
- data/example/list_lookup1 +29 -0
- data/example/list_search1 +30 -0
- data/example/multiple_operation1 +67 -0
- data/example/seller_listing_lookup1 +30 -0
- data/example/seller_listing_search1 +28 -0
- data/example/seller_lookup1 +45 -0
- data/example/shopping_cart1 +42 -0
- data/example/similarity_lookup1 +48 -0
- data/example/tag_lookup1 +34 -0
- data/example/transaction_lookup1 +26 -0
- data/lib/amazon/aws/cache.rb +141 -0
- data/lib/amazon/aws/search.rb +334 -0
- data/lib/amazon/aws/shoppingcart.rb +504 -0
- data/lib/amazon/aws.rb +1176 -0
- data/lib/amazon/locale.rb +102 -0
- data/lib/amazon.rb +139 -0
- data/ruby-aws.gemspec +57 -0
- data/ruby-aws.spec +177 -0
- data/setup.rb +1306 -0
- data/test/setup.rb +31 -0
- data/test/tc_amazon.rb +20 -0
- data/test/tc_aws.rb +151 -0
- data/test/tc_item_search.rb +21 -0
- data/test/tc_multiple_operation.rb +58 -0
- data/test/tc_operation_request.rb +58 -0
- data/test/tc_serialisation.rb +103 -0
- data/test/tc_shopping_cart.rb +214 -0
- data/test/ts_aws.rb +12 -0
- metadata +99 -0
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kernow-ruby-aaws
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.5.4
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ian Macdonald
|
8
|
+
- Jamie Dyer
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2008-12-04 00:00:00 -08:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: Ruby/AWS is a Ruby language library that makes it relatively easy for the programmer to retrieve information from the popular Amazon Web site via Amazon's Associates Web Services (AWS).
|
18
|
+
email: jamie@kernowsoul.com
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files:
|
24
|
+
- INSTALL
|
25
|
+
- README
|
26
|
+
- NEWS
|
27
|
+
files:
|
28
|
+
- setup.rb
|
29
|
+
- ruby-aws.spec
|
30
|
+
- ruby-aws.gemspec
|
31
|
+
- README.rdoc
|
32
|
+
- README
|
33
|
+
- Rakefile
|
34
|
+
- NEWS
|
35
|
+
- lib/amazon.rb
|
36
|
+
- lib/amazon/locale.rb
|
37
|
+
- lib/amazon/aws.rb
|
38
|
+
- lib/amazon/aws/shoppingcart.rb
|
39
|
+
- lib/amazon/aws/search.rb
|
40
|
+
- lib/amazon/aws/cache.rb
|
41
|
+
- INSTALL
|
42
|
+
- example/transaction_lookup1
|
43
|
+
- example/tag_lookup1
|
44
|
+
- example/similarity_lookup1
|
45
|
+
- example/shopping_cart1
|
46
|
+
- example/seller_lookup1
|
47
|
+
- example/seller_listing_search1
|
48
|
+
- example/seller_listing_lookup1
|
49
|
+
- example/multiple_operation1
|
50
|
+
- example/list_search1
|
51
|
+
- example/list_lookup1
|
52
|
+
- example/item_search3
|
53
|
+
- example/item_search2
|
54
|
+
- example/item_search1
|
55
|
+
- example/item_lookup2
|
56
|
+
- example/item_lookup1
|
57
|
+
- example/help1
|
58
|
+
- example/example1
|
59
|
+
- example/customer_content_search1
|
60
|
+
- example/customer_content_lookup1
|
61
|
+
- example/browse_node_lookup1
|
62
|
+
- COPYING
|
63
|
+
has_rdoc: true
|
64
|
+
homepage: http://github.com/kernowsoul/ruby-aws
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options:
|
67
|
+
- --main
|
68
|
+
- README.txt
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: "0"
|
76
|
+
version:
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: "0"
|
82
|
+
version:
|
83
|
+
requirements: []
|
84
|
+
|
85
|
+
rubyforge_project:
|
86
|
+
rubygems_version: 1.2.0
|
87
|
+
signing_key:
|
88
|
+
specification_version: 2
|
89
|
+
summary: Interface for Amazon's Associates Web Services (AWS).
|
90
|
+
test_files:
|
91
|
+
- test/ts_aws.rb
|
92
|
+
- test/tc_shopping_cart.rb
|
93
|
+
- test/tc_serialisation.rb
|
94
|
+
- test/tc_operation_request.rb
|
95
|
+
- test/tc_multiple_operation.rb
|
96
|
+
- test/tc_item_search.rb
|
97
|
+
- test/tc_aws.rb
|
98
|
+
- test/tc_amazon.rb
|
99
|
+
- test/setup.rb
|