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/dns.rb

26 lines
704 B
Ruby
Raw Normal View History

2011-01-04 19:49:35 -05:00
module Fog
class DNS
def self.new(attributes)
attributes = attributes.dup # prevent delete from having side effects
2011-01-07 21:14:39 -05:00
case provider = attributes[:provider] # attributes.delete(:provider)
2011-01-04 19:49:35 -05:00
when 'AWS'
2011-01-07 21:12:05 -05:00
require 'fog/dns/aws'
2011-01-04 19:49:35 -05:00
Fog::AWS::DNS.new(attributes)
when 'Linode'
2011-01-07 21:12:05 -05:00
require 'fog/dns/linode'
2011-01-04 19:49:35 -05:00
Fog::Linode::DNS.new(attributes)
when 'Slicehost'
2011-01-07 21:12:05 -05:00
require 'fog/dns/slicehost'
2011-01-04 19:49:35 -05:00
Fog::Slicehost::DNS.new(attributes)
when 'Zerigo'
2011-01-07 21:12:05 -05:00
require 'fog/dns/zerigo'
2011-01-04 19:49:35 -05:00
Fog::Zerigo::DNS.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized storage provider")
end
end
end
end