mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[compute] fix top level initializer errors
This commit is contained in:
parent
6c664877c0
commit
2faeb37b00
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ module Fog
|
|||
class Storage
|
||||
|
||||
def self.new(attributes)
|
||||
case attributes.delete(:provider)
|
||||
case provider = attributes.delete(:provider)
|
||||
when 'AWS'
|
||||
require 'fog/aws'
|
||||
Fog::AWS::Compute.new(attributes)
|
||||
|
|
Loading…
Add table
Reference in a new issue