mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
16 lines
345 B
Ruby
16 lines
345 B
Ruby
module Slicehost
|
|
|
|
def self.[](service)
|
|
@@connections ||= Hash.new do |hash, key|
|
|
credentials = Fog.credentials.reject do |k, v|
|
|
![:slicehost_password].include?(k)
|
|
end
|
|
hash[key] = case key
|
|
when :compute
|
|
Fog::Slicehost::Compute.new(credentials)
|
|
end
|
|
end
|
|
@@connections[service]
|
|
end
|
|
|
|
end
|