amazon-ecs 0.5.7 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/README +2 -5
  3. data/lib/amazon/ecs.rb +1 -1
  4. metadata +40 -16
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 1.0.0 2010-11-09
2
+ ----------------
3
+ * Set default Amazon API version to 2010-10-01
4
+
1
5
  0.5.7 2009-08-28
2
6
  ----------------
3
7
  * Added support for to sign request using openssl with fallback on ruby-hmac
data/README CHANGED
@@ -1,6 +1,6 @@
1
1
  == amazon-ecs
2
2
 
3
- Generic Amazon E-commerce REST or Product Advertising API using Hpricot with configurable
3
+ Generic Product Advertising API (Amazon E-commerce REST API) using Hpricot with configurable
4
4
  default options and method call options. Uses Response and
5
5
  Element wrapper classes for easy access to REST XML output.
6
6
 
@@ -12,8 +12,6 @@ If in the future, there is a change in REST XML output structure,
12
12
  no changes will be required on <tt>amazon-ecs</tt> library,
13
13
  instead you just need to change the element path.
14
14
 
15
- Version: 0.5.7
16
-
17
15
  == INSTALLATION
18
16
 
19
17
  $ gem install amazon-ecs
@@ -97,7 +95,6 @@ http://www.awszone.com/scratchpads/aws/ecs.us/index.aws
97
95
  == LINKS
98
96
 
99
97
  * http://github.com/jugend/amazon-ecs
100
- * http://amazon-ecs.rubyforge.org
101
98
  * http://www.pluitsolutions.com/amazon-ecs
102
99
 
103
100
  == CREDITS
@@ -108,4 +105,4 @@ Thanks to Dan Milne (http://da.nmilne.com/) for the signed request patch.
108
105
 
109
106
  (The MIT License)
110
107
 
111
- Copyright (c) 2009 Herryanto Siatono, Pluit Solutions
108
+ Copyright (c) 2010 Herryanto Siatono, http://www.siatono.com
data/lib/amazon/ecs.rb CHANGED
@@ -46,7 +46,7 @@ module Amazon
46
46
  OPENSSL_DIGEST = OpenSSL::Digest::Digest.new( 'sha256' ) if OPENSSL_DIGEST_SUPPORT
47
47
 
48
48
  @@options = {
49
- :version => "2009-01-06",
49
+ :version => "2010-10-01",
50
50
  :service => "AWSECommerceService"
51
51
  }
52
52
 
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amazon-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.7
4
+ hash: 23
5
+ prerelease: false
6
+ segments:
7
+ - 1
8
+ - 0
9
+ - 0
10
+ version: 1.0.0
5
11
  platform: ruby
6
12
  authors:
7
13
  - Herryanto Siatono
@@ -9,31 +15,42 @@ autorequire: name
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2009-08-28 00:00:00 +08:00
18
+ date: 2010-11-10 00:00:00 +08:00
13
19
  default_executable:
14
20
  dependencies:
15
21
  - !ruby/object:Gem::Dependency
16
22
  name: hpricot
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
20
26
  requirements:
21
27
  - - ">="
22
28
  - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ - 4
23
33
  version: "0.4"
24
- version:
34
+ type: :runtime
35
+ version_requirements: *id001
25
36
  - !ruby/object:Gem::Dependency
26
37
  name: ruby-hmac
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
30
41
  requirements:
31
42
  - - ">="
32
43
  - !ruby/object:Gem::Version
44
+ hash: 23
45
+ segments:
46
+ - 0
47
+ - 3
48
+ - 2
33
49
  version: 0.3.2
34
- version:
50
+ type: :runtime
51
+ version_requirements: *id002
35
52
  description:
36
- email: herryanto@pluitsolutions.com
53
+ email: herryanto@gmail.com
37
54
  executables: []
38
55
 
39
56
  extensions: []
@@ -43,10 +60,11 @@ extra_rdoc_files:
43
60
  - CHANGELOG
44
61
  files:
45
62
  - lib/amazon/ecs.rb
63
+ - test/amazon/ecs_test.rb
46
64
  - README
47
65
  - CHANGELOG
48
66
  has_rdoc: true
49
- homepage: http://amazon-ecs.rubyforge.net/
67
+ homepage: https://github.com/jugend/amazon-ecs
50
68
  licenses: []
51
69
 
52
70
  post_install_message:
@@ -55,23 +73,29 @@ rdoc_options: []
55
73
  require_paths:
56
74
  - lib
57
75
  required_ruby_version: !ruby/object:Gem::Requirement
76
+ none: false
58
77
  requirements:
59
78
  - - ">="
60
79
  - !ruby/object:Gem::Version
80
+ hash: 3
81
+ segments:
82
+ - 0
61
83
  version: "0"
62
- version:
63
84
  required_rubygems_version: !ruby/object:Gem::Requirement
85
+ none: false
64
86
  requirements:
65
87
  - - ">="
66
88
  - !ruby/object:Gem::Version
89
+ hash: 3
90
+ segments:
91
+ - 0
67
92
  version: "0"
68
- version:
69
93
  requirements: []
70
94
 
71
95
  rubyforge_project:
72
- rubygems_version: 1.3.4
96
+ rubygems_version: 1.3.7
73
97
  signing_key:
74
98
  specification_version: 3
75
- summary: Generic Amazon E-commerce Service (ECS) REST API. Supports ECS 4.0.
99
+ summary: Generic Amazon Product Advertising Ruby API
76
100
  test_files:
77
101
  - test/amazon/ecs_test.rb