fog 0.3.4 → 0.3.5

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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fog (0.3.4)
4
+ fog (0.3.5)
5
5
  builder
6
6
  excon (>= 0.2.1)
7
7
  formatador (>= 0.0.15)
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  ## If your rubyforge_project name is different, then edit it and comment out
8
8
  ## the sub! line in the Rakefile
9
9
  s.name = 'fog'
10
- s.version = '0.3.4'
10
+ s.version = '0.3.5'
11
11
  s.date = '2010-09-24'
12
12
  s.rubyforge_project = 'fog'
13
13
 
data/lib/fog.rb CHANGED
@@ -32,7 +32,7 @@ require 'fog/ssh'
32
32
  module Fog
33
33
 
34
34
  unless const_defined?(:VERSION)
35
- VERSION = '0.3.4'
35
+ VERSION = '0.3.5'
36
36
  end
37
37
 
38
38
  module Mock
@@ -91,7 +91,7 @@ module Fog
91
91
 
92
92
  def initialize(options={})
93
93
  @aws_access_key_id = options[:aws_access_key_id]
94
- @region = options[:region] || 'us-east-1'
94
+ options[:region] ||= 'us-east-1'
95
95
  @host = options[:host] || case options[:region]
96
96
  when 'eu-west-1'
97
97
  's3-eu-west-1.amazonaws.com'
@@ -104,7 +104,7 @@ module Fog
104
104
  else
105
105
  raise ArgumentError, "Unknown region: #{options[:region].inspect}"
106
106
  end
107
- @data = self.class.data[@region][@aws_access_key_id]
107
+ @data = self.class.data[options[:region]][@aws_access_key_id]
108
108
  end
109
109
 
110
110
  def signature(params)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 4
9
- version: 0.3.4
8
+ - 5
9
+ version: 0.3.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - geemus (Wesley Beary)