1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/storage.rb
2011-01-07 18:15:16 -08:00

25 lines
No EOL
736 B
Ruby

module Fog
class Storage
def self.new(attributes)
attributes = attributes.dup # prevent delete from having side effects
case provider = attributes[:provider] # attributes.delete(:provider)
when 'AWS'
require 'fog/storage/aws'
Fog::AWS::Storage.new(attributes)
when 'Google'
require 'fog/storage/google'
Fog::Google::Storage.new(attributes)
when 'Local'
require 'fog/storage/local'
Fog::Local::Storage.new(attributes)
when 'Rackspace'
require 'fog/storage/rackspace'
Fog::Rackspace::Storage.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized storage provider")
end
end
end
end