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

31 lines
542 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|
credentials = Fog.credentials.reject do |k,v|
![:linode_api_key].include?(k)
end
hash[key] = case key
when :linode
Fog::Linode.new(credentials)
end
end
@@connections[service]
end
else
def initialized?
false
end
end
end
end