grempe-amazon-ec2 0.5.0 → 0.5.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/Rakefile +1 -1
- data/VERSION +1 -1
- data/amazon-ec2.gemspec +6 -5
- metadata +4 -8
data/Rakefile
CHANGED
|
@@ -9,7 +9,7 @@ Jeweler::Tasks.new do |gem|
|
|
|
9
9
|
gem.email = "glenn@rempe.us"
|
|
10
10
|
gem.homepage = "http://github.com/grempe/amazon-ec2"
|
|
11
11
|
gem.authors = ["Glenn Rempe"]
|
|
12
|
-
gem.rdoc_options = ["--
|
|
12
|
+
gem.rdoc_options = ["--title", "amazon-ec2 documentation", "--line-numbers", "--main", "README.rdoc"]
|
|
13
13
|
gem.rubyforge_project = 'amazon-ec2'
|
|
14
14
|
gem.add_dependency('xml-simple', '>= 1.0.12')
|
|
15
15
|
gem.add_development_dependency('mocha', '>= 0.9.7')
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.1
|
data/amazon-ec2.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{amazon-ec2}
|
|
8
|
-
s.version = "0.5.
|
|
8
|
+
s.version = "0.5.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Glenn Rempe"]
|
|
12
|
-
s.date = %q{2009-08-
|
|
12
|
+
s.date = %q{2009-08-20}
|
|
13
13
|
s.description = %q{A Ruby library for accessing the Amazon Web Services Elastic Compute Cloud (EC2) and Elastic Load Balancer (ELB) API's.}
|
|
14
14
|
s.email = %q{glenn@rempe.us}
|
|
15
15
|
s.executables = ["ec2-gem-example.rb", "ec2-gem-profile.rb", "ec2sh", "setup.rb"]
|
|
@@ -75,11 +75,12 @@ Gem::Specification.new do |s|
|
|
|
75
75
|
"wsdl/2008-05-05.ec2.wsdl",
|
|
76
76
|
"wsdl/2008-12-01.ec2.wsdl"
|
|
77
77
|
]
|
|
78
|
+
s.has_rdoc = true
|
|
78
79
|
s.homepage = %q{http://github.com/grempe/amazon-ec2}
|
|
79
|
-
s.rdoc_options = ["--
|
|
80
|
+
s.rdoc_options = ["--title", "amazon-ec2 documentation", "--line-numbers", "--main", "README.rdoc"]
|
|
80
81
|
s.require_paths = ["lib"]
|
|
81
82
|
s.rubyforge_project = %q{amazon-ec2}
|
|
82
|
-
s.rubygems_version = %q{1.3.
|
|
83
|
+
s.rubygems_version = %q{1.3.1}
|
|
83
84
|
s.summary = %q{Amazon EC2 Ruby Gem}
|
|
84
85
|
s.test_files = [
|
|
85
86
|
"test/test_EC2.rb",
|
|
@@ -102,7 +103,7 @@ Gem::Specification.new do |s|
|
|
|
102
103
|
|
|
103
104
|
if s.respond_to? :specification_version then
|
|
104
105
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
105
|
-
s.specification_version =
|
|
106
|
+
s.specification_version = 2
|
|
106
107
|
|
|
107
108
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
108
109
|
s.add_runtime_dependency(%q<xml-simple>, [">= 1.0.12"])
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: grempe-amazon-ec2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Glenn Rempe
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-08-
|
|
12
|
+
date: 2009-08-20 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -131,20 +131,16 @@ files:
|
|
|
131
131
|
- wsdl/2008-02-01.ec2.wsdl
|
|
132
132
|
- wsdl/2008-05-05.ec2.wsdl
|
|
133
133
|
- wsdl/2008-12-01.ec2.wsdl
|
|
134
|
-
has_rdoc:
|
|
134
|
+
has_rdoc: true
|
|
135
135
|
homepage: http://github.com/grempe/amazon-ec2
|
|
136
136
|
licenses:
|
|
137
137
|
post_install_message:
|
|
138
138
|
rdoc_options:
|
|
139
|
-
- --quiet
|
|
140
139
|
- --title
|
|
141
140
|
- amazon-ec2 documentation
|
|
142
|
-
- --opname
|
|
143
|
-
- index.html
|
|
144
141
|
- --line-numbers
|
|
145
142
|
- --main
|
|
146
143
|
- README.rdoc
|
|
147
|
-
- --inline-source
|
|
148
144
|
require_paths:
|
|
149
145
|
- lib
|
|
150
146
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -164,7 +160,7 @@ requirements: []
|
|
|
164
160
|
rubyforge_project: amazon-ec2
|
|
165
161
|
rubygems_version: 1.3.5
|
|
166
162
|
signing_key:
|
|
167
|
-
specification_version:
|
|
163
|
+
specification_version: 2
|
|
168
164
|
summary: Amazon EC2 Ruby Gem
|
|
169
165
|
test_files:
|
|
170
166
|
- test/test_EC2.rb
|