public
Description: API wrapper for Amazon Associates Web Service.
Clone URL: git://github.com/jnunemaker/aaws.git
Search Repo:
jnunemaker (author)
Thu May 08 09:33:18 -0700 2008
commit  8a95d8eccdbf362dfcc4f07f380101b2e982b644
tree    d949dede457c588ae0d737cebc519034c03381c3
parent  1955a037d3bc0580b699658f13f3efb7d7c490c7
aaws / lib / aaws.rb
100644 19 lines (16 sloc) 0.589 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$:.unshift File.dirname(__FILE__)
 
# http://ecs.amazonaws.com/onca/xml?Service=AWSECommerceService&AWSAccessKeyId=[ID]&Operation=ItemSearch&SearchIndex=Books&Title=Harry%20Potter&Version=2008-03-03
# Operation=ItemSearch&SearchIndex=Books&Title=Harry%20Potter&Version=2008-03-03
 
require 'rubygems'
gem 'activesupport', '>= 2.0.2'
require 'activesupport'
gem 'hpricot', '>= 0.6'
require 'hpricot'
require 'class_level_inheritable_attributes'
require 'aaws/base'
require 'aaws/connection'
require 'aaws/item'
require 'aaws/book'
 
module AAWS
  class ConnectionError < StandardError; end
end