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/orchestration.rb
2013-09-10 22:16:42 -04:00

25 lines
622 B
Ruby

module Fog
module Orchestration
def self.[](provider)
self.new(:provider => provider)
end
def self.new(attributes)
attributes = attributes.dup # Prevent delete from having side effects
provider = attributes.delete(:provider).to_s.downcase.to_sym
if self.providers.include?(provider)
require "fog/#{provider}/network"
return Fog::Orchestration.const_get(Fog.providers[provider]).new(attributes)
end
raise ArgumentError.new("#{provider} has no orchestration service")
end
def self.providers
Fog.services[:orchestration]
end
end
end