amazon-ec2 0.0.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.
- data/CHANGELOG.txt +6 -0
- data/History.txt +8 -0
- data/Manifest.txt +12 -0
- data/README.txt +186 -0
- data/Rakefile +57 -0
- data/examples/ec2-example.rb +45 -0
- data/lib/EC2.rb +555 -0
- data/lib/EC2/version.rb +9 -0
- data/setup.rb +1585 -0
- data/test/EC2_test.rb +11 -0
- data/test/test_helper.rb +2 -0
- metadata +75 -0
data/test/EC2_test.rb
ADDED
data/test/test_helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
rubygems_version: 0.9.0
|
|
3
|
+
specification_version: 1
|
|
4
|
+
name: amazon-ec2
|
|
5
|
+
version: !ruby/object:Gem::Version
|
|
6
|
+
version: 0.0.1
|
|
7
|
+
date: 2006-12-14 00:00:00 -08:00
|
|
8
|
+
summary: An interface library that allows Ruby or Ruby on Rails applications to easily connect to the HTTP 'Query API' for the Amazon Web Services Elastic Compute Cloud (EC2) and manipulate server instances.
|
|
9
|
+
require_paths:
|
|
10
|
+
- lib
|
|
11
|
+
email: grempe@rubyforge.org
|
|
12
|
+
homepage: http://amazon-ec2.rubyforge.org
|
|
13
|
+
rubyforge_project: amazon-ec2
|
|
14
|
+
description: An interface library that allows Ruby or Ruby on Rails applications to easily connect to the HTTP 'Query API' for the Amazon Web Services Elastic Compute Cloud (EC2) and manipulate server instances.
|
|
15
|
+
autorequire: EC2
|
|
16
|
+
default_executable:
|
|
17
|
+
bindir: bin
|
|
18
|
+
has_rdoc: true
|
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.0.0
|
|
24
|
+
version:
|
|
25
|
+
platform: ruby
|
|
26
|
+
signing_key:
|
|
27
|
+
cert_chain:
|
|
28
|
+
post_install_message:
|
|
29
|
+
authors:
|
|
30
|
+
- Amazon Web Services LLC
|
|
31
|
+
- Glenn Rempe
|
|
32
|
+
files:
|
|
33
|
+
- History.txt
|
|
34
|
+
- Manifest.txt
|
|
35
|
+
- README.txt
|
|
36
|
+
- CHANGELOG.txt
|
|
37
|
+
- Rakefile
|
|
38
|
+
- setup.rb
|
|
39
|
+
- lib/EC2.rb
|
|
40
|
+
- lib/EC2/version.rb
|
|
41
|
+
- test/test_helper.rb
|
|
42
|
+
- test/EC2_test.rb
|
|
43
|
+
- examples/ec2-example.rb
|
|
44
|
+
test_files:
|
|
45
|
+
- test/EC2_test.rb
|
|
46
|
+
rdoc_options:
|
|
47
|
+
- --quiet
|
|
48
|
+
- --title
|
|
49
|
+
- AWS EC2 documentation
|
|
50
|
+
- --opname
|
|
51
|
+
- index.html
|
|
52
|
+
- --line-numbers
|
|
53
|
+
- --main
|
|
54
|
+
- README.txt
|
|
55
|
+
- --inline-source
|
|
56
|
+
extra_rdoc_files:
|
|
57
|
+
- README.txt
|
|
58
|
+
- History.txt
|
|
59
|
+
- CHANGELOG.txt
|
|
60
|
+
executables: []
|
|
61
|
+
|
|
62
|
+
extensions: []
|
|
63
|
+
|
|
64
|
+
requirements: []
|
|
65
|
+
|
|
66
|
+
dependencies:
|
|
67
|
+
- !ruby/object:Gem::Dependency
|
|
68
|
+
name: hoe
|
|
69
|
+
version_requirement:
|
|
70
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: 1.1.6
|
|
75
|
+
version:
|