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.
@@ -1,5 +1,8 @@
1
1
  =CHANGELOG.txt : Amazon Elastic Compute Cloud (EC2) Ruby Gem
2
2
 
3
+ ==2006.12.14
4
+ * Fixed bug in .run_instances method. Patch submitted by Stephen Caudill on AWS forums. Thanks!
5
+
3
6
 
4
7
  ==2006.12.13
5
8
  * Original sample library released by Amazon Web Services, LLC
@@ -2,7 +2,10 @@
2
2
 
3
3
  ==Version History
4
4
 
5
- ===0.0.1 (12/23/2006)
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"] = keyName unless keyName.nil?
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
@@ -2,7 +2,7 @@ module EC2 #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
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.1
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: