13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/fog/bin/local.rb', line 13
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :files
location = caller.first
warning = "[yellow][WARN] Local[:files] is deprecated, use Local[:storage] instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::Storage.new(:provider => 'Local')
when :storage
Fog::Storage.new(:provider => 'Local')
else
raise ArgumentError, "Unrecognized service: #{service}"
end
end
@@connections[service]
end
|