4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# File 'lib/bbcloud/vendor/fog-0.3.23/lib/fog/slicehost/bin.rb', line 4
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :compute
Fog::Slicehost::Compute.new
when :slices
location = caller.first
warning = "[yellow][WARN] Slicehost[:blocks] is deprecated, use Bluebox[:compute] instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::Slicehost::Compute.new
end
end
@@connections[service]
end
|