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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/amazon-ec2.gemspec +1 -1
  3. data/lib/AWS.rb +7 -1
  4. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.13
1
+ 0.9.14
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{amazon-ec2}
8
- s.version = "0.9.13"
8
+ s.version = "0.9.14"
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"]
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 URI ].each { |f| require f }
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
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 13
9
- version: 0.9.13
8
+ - 14
9
+ version: 0.9.14
10
10
  platform: ruby
11
11
  authors:
12
12
  - Glenn Rempe