amazon-ec2 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.txt +3 -0
- data/History.txt +4 -1
- data/lib/EC2.rb +3 -3
- data/lib/EC2/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.txt
CHANGED
data/History.txt
CHANGED
@@ -2,7 +2,10 @@
|
|
2
2
|
|
3
3
|
==Version History
|
4
4
|
|
5
|
-
===0.0.
|
5
|
+
===0.0.2 (12/14/2006)
|
6
|
+
* Bugfix in run_instances method. Method works now.
|
7
|
+
|
8
|
+
===0.0.1 (12/13/2006)
|
6
9
|
* Initial release of the Ruby Gem. This includes the version of the library exactly as provided by
|
7
10
|
Amazon Web Services as example code. No changes or enhancements to that code were made other than
|
8
11
|
packaging it as a Ruby Gem.
|
data/lib/EC2.rb
CHANGED
@@ -114,9 +114,9 @@ module EC2
|
|
114
114
|
"ImageId" => imageId,
|
115
115
|
"MinCount" => in_params[:minCount].to_s,
|
116
116
|
"MaxCount" => in_params[:maxCount].to_s,
|
117
|
-
}.merge(pathlist("SecurityGroup", groupIds))
|
118
|
-
|
119
|
-
params["KeyName"] =
|
117
|
+
}.merge(pathlist("SecurityGroup", in_params[:groupIds]))
|
118
|
+
|
119
|
+
params["KeyName"] = in_params[:keyname] unless in_params[:keyname].nil?
|
120
120
|
|
121
121
|
RunInstancesResponse.new(make_request("RunInstances", params))
|
122
122
|
end
|
data/lib/EC2/version.rb
CHANGED
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: amazon-ec2
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
6
|
+
version: 0.0.2
|
7
7
|
date: 2006-12-14 00:00:00 -08:00
|
8
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
9
|
require_paths:
|