amazon-ec2 0.9.13 → 0.9.14
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/amazon-ec2.gemspec +1 -1
- data/lib/AWS.rb +7 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.14
|
data/amazon-ec2.gemspec
CHANGED
data/lib/AWS.rb
CHANGED
@@ -8,7 +8,13 @@
|
|
8
8
|
# Home:: http://github.com/grempe/amazon-ec2/tree/master
|
9
9
|
#++
|
10
10
|
|
11
|
-
%w[ base64 cgi openssl digest/sha1 net/https net/http rexml/document time ostruct
|
11
|
+
%w[ base64 cgi openssl digest/sha1 net/https net/http rexml/document time ostruct ].each { |f| require f }
|
12
|
+
|
13
|
+
begin
|
14
|
+
require 'URI' unless defined? URI
|
15
|
+
rescue Exception => e
|
16
|
+
# nothing
|
17
|
+
end
|
12
18
|
|
13
19
|
begin
|
14
20
|
require 'xmlsimple' unless defined? XmlSimple
|