fog--fog/lib/fog/linode/bin.rb

32 lines
464 B
Ruby
Raw Normal View History

module Linode
class << self
if Fog.credentials[:linode_api_key]
def initialized?
true
end
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :linode
Fog::Linode.new
end
end
@@connections[service]
end
def services
[:linode]
end
else
def initialized?
false
end
end
end
end