amazon-ec2 0.3.8 → 0.4.0
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/.gitignore +6 -0
- data/{CHANGELOG → ChangeLog} +3 -0
- data/README.rdoc +2 -2
- data/Rakefile +81 -25
- data/VERSION +1 -0
- data/amazon-ec2.gemspec +108 -0
- data/bin/ec2sh +2 -2
- data/wsdl/2007-08-29.ec2.wsdl +1269 -0
- data/wsdl/2008-02-01.ec2.wsdl +1614 -0
- data/wsdl/2008-05-05.ec2.wsdl +2052 -0
- data/wsdl/2008-12-01.ec2.wsdl +2354 -0
- metadata +56 -14
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: amazon-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Glenn Rempe
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-06-06 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -22,6 +22,36 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: 1.0.11
|
24
24
|
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: mocha
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.9.0
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: test-spec
|
37
|
+
type: :development
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 0.9.0
|
44
|
+
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: rcov
|
47
|
+
type: :development
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 0.8.1.2.0
|
54
|
+
version:
|
25
55
|
description: An interface library that allows Ruby applications to easily connect to the HTTP 'Query API' for the Amazon Web Services Elastic Compute Cloud (EC2) and manipulate cloud servers.
|
26
56
|
email: glenn@rempe.us
|
27
57
|
executables:
|
@@ -31,15 +61,21 @@ executables:
|
|
31
61
|
extensions: []
|
32
62
|
|
33
63
|
extra_rdoc_files:
|
34
|
-
-
|
35
|
-
- CHANGELOG
|
64
|
+
- ChangeLog
|
36
65
|
- LICENSE
|
37
|
-
files:
|
38
66
|
- README.rdoc
|
67
|
+
files:
|
68
|
+
- .gitignore
|
69
|
+
- ChangeLog
|
39
70
|
- LICENSE
|
40
|
-
-
|
71
|
+
- README.rdoc
|
41
72
|
- Rakefile
|
42
|
-
-
|
73
|
+
- VERSION
|
74
|
+
- amazon-ec2.gemspec
|
75
|
+
- bin/ec2-gem-example.rb
|
76
|
+
- bin/ec2sh
|
77
|
+
- bin/setup.rb
|
78
|
+
- lib/EC2.rb
|
43
79
|
- lib/EC2/availability_zones.rb
|
44
80
|
- lib/EC2/console.rb
|
45
81
|
- lib/EC2/elastic_ips.rb
|
@@ -53,7 +89,6 @@ files:
|
|
53
89
|
- lib/EC2/security_groups.rb
|
54
90
|
- lib/EC2/snapshots.rb
|
55
91
|
- lib/EC2/volumes.rb
|
56
|
-
- lib/EC2.rb
|
57
92
|
- test/test_EC2.rb
|
58
93
|
- test/test_EC2_availability_zones.rb
|
59
94
|
- test/test_EC2_console.rb
|
@@ -64,12 +99,19 @@ files:
|
|
64
99
|
- test/test_EC2_keypairs.rb
|
65
100
|
- test/test_EC2_products.rb
|
66
101
|
- test/test_EC2_responses.rb
|
102
|
+
- test/test_EC2_s3_xmlsimple.rb
|
67
103
|
- test/test_EC2_security_groups.rb
|
68
104
|
- test/test_EC2_snapshots.rb
|
69
105
|
- test/test_EC2_volumes.rb
|
70
106
|
- test/test_helper.rb
|
107
|
+
- wsdl/2007-08-29.ec2.wsdl
|
108
|
+
- wsdl/2008-02-01.ec2.wsdl
|
109
|
+
- wsdl/2008-05-05.ec2.wsdl
|
110
|
+
- wsdl/2008-12-01.ec2.wsdl
|
71
111
|
has_rdoc: true
|
72
|
-
homepage: http://github.com/grempe/amazon-ec2
|
112
|
+
homepage: http://github.com/grempe/amazon-ec2
|
113
|
+
licenses: []
|
114
|
+
|
73
115
|
post_install_message:
|
74
116
|
rdoc_options:
|
75
117
|
- --quiet
|
@@ -97,11 +139,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
139
|
version:
|
98
140
|
requirements: []
|
99
141
|
|
100
|
-
rubyforge_project:
|
101
|
-
rubygems_version: 1.3.
|
142
|
+
rubyforge_project: amazon-ec2
|
143
|
+
rubygems_version: 1.3.4
|
102
144
|
signing_key:
|
103
|
-
specification_version:
|
104
|
-
summary:
|
145
|
+
specification_version: 3
|
146
|
+
summary: Amazon EC2 Ruby Gem
|
105
147
|
test_files:
|
106
148
|
- test/test_EC2.rb
|
107
149
|
- test/test_EC2_availability_zones.rb
|