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/compute.rb
2011-01-07 18:15:09 -08:00

37 lines
1.1 KiB
Ruby

module Fog
class Compute
def self.new(attributes)
attributes = attributes.dup # prevent delete from having side effects
case provider = attributes.delete(:provider)
when 'AWS'
require 'fog/compute/aws'
Fog::AWS::Compute.new(attributes)
when 'Bluebox'
require 'fog/compute/bluebox'
Fog::Bluebox::Compute.new(attributes)
when 'Brightbox'
require 'fog/compute/brightbox'
Fog::Brightbox::Compute.new(attributes)
when 'GoGrid'
require 'fog/compute/go_grid'
Fog::GoGrid::Compute.new(attributes)
when 'Linode'
require 'fog/compute/linode'
Fog::Linode::Compute.new(attributes)
when 'NewServers'
require 'fog/compute/new_servers'
Fog::NewServers::Compute.new(attributes)
when 'Rackspace'
require 'fog/compute/rackspace'
Fog::Rackspace::Compute.new(attributes)
when 'Slicehost'
require 'fog/compute/slicehost'
Fog::Slicehost::Compute.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized compute provider")
end
end
end
end