mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
474 B
Ruby
29 lines
474 B
Ruby
module Linode
|
|
|
|
def self.[](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 :compute
|
|
Fog::Linode::Compute.new(credentials)
|
|
end
|
|
end
|
|
@@connections[service]
|
|
end
|
|
|
|
module Compute
|
|
|
|
module Formats
|
|
|
|
BASIC = {
|
|
'ERRORARRAY' => [],
|
|
'ACTION' => String
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|