fog--fog/lib/fog/bluebox/bin.rb

41 lines
595 B
Ruby
Raw Normal View History

module Bluebox
class << self
if Fog.credentials[:bluebox_api_key]
def initialized?
true
end
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :blocks
Fog::Bluebox.new
end
end
@@connections[service]
end
def flavors
self[:blocks].flavors
end
def images
self[:blocks].images
end
def servers
self[:blocks].servers
end
else
def initialized?
false
end
end
end
end