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

20 lines
512 B
Ruby
Raw Normal View History

2011-01-07 20:02:41 -05:00
module Fog
class CDN
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-07 20:02:41 -05:00
when 'AWS'
2011-01-07 21:12:05 -05:00
require 'fog/cdn/aws'
2011-01-07 20:02:41 -05:00
Fog::AWS::CDN.new(attributes)
when 'Rackspace'
2011-01-07 21:12:05 -05:00
require 'fog/cdn/rackspace'
2011-01-07 20:02:41 -05:00
Fog::Rackspace::CDN.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized cdn provider")
2011-01-07 20:02:41 -05:00
end
end
end
end