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

24 lines
574 B
Ruby
Raw Normal View History

2011-01-07 20:02:41 -05:00
module Fog
module CDN
2011-01-07 20:02:41 -05:00
def self.[](provider)
self.new(:provider => provider)
end
2011-01-07 20:02:41 -05:00
def self.new(attributes)
attributes = attributes.dup # prevent delete from having side effects
case provider = attributes[:provider].to_s.downcase.to_sym
when :aws
2011-01-07 21:12:05 -05:00
require 'fog/cdn/aws'
Fog::CDN::AWS.new(attributes)
when :rackspace
2011-01-07 21:12:05 -05:00
require 'fog/cdn/rackspace'
Fog::CDN::Rackspace.new(attributes)
2011-01-07 20:02:41 -05:00
else
raise ArgumentError.new("#{provider} is not a recognized cdn provider")
2011-01-07 20:02:41 -05:00
end
end
end
end