1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/linode/helper.rb
2010-09-09 17:50:38 -07:00

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