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/bin/go_grid.rb

32 lines
708 B
Ruby
Raw Normal View History

class GoGrid < Fog::Bin
2010-07-24 20:12:13 -04:00
class << self
def class_for(key)
case key
2011-02-16 18:07:42 -05:00
when :compute
Fog::Compute::GoGrid
else
raise ArgumentError, "Unsupported #{self} service: #{key}"
end
end
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :compute
Fog::Logger.warning("GoGrid[:compute] is not recommended, use Compute[:gogrid] for portability")
Fog::Compute.new(:provider => 'GoGrid')
else
raise ArgumentError, "Unrecognized service: #{key.inspect}"
2010-07-24 20:12:13 -04:00
end
end
@@connections[service]
end
2010-07-24 20:12:13 -04:00
def services
Fog::GoGrid.services
2010-07-24 20:12:13 -04:00
end
2010-07-24 20:12:13 -04:00
end
end