mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
31 lines
542 B
Ruby
31 lines
542 B
Ruby
|
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
|