Sha256: 86dd0b27e4666afd2f2994229d251bb998f01751356ef2e2929e9b64464003ee
Contents?: true
Size: 1.03 KB
Versions: 17
Compression:
Stored size: 1.03 KB
Contents
class Rackspace < Fog::Bin class << self def [](service) @@connections ||= Hash.new do |hash, key| hash[key] = case key when :cdn Fog::Rackspace::CDN.new when :compute Fog::Rackspace::Compute.new when :files location = caller.first warning = "[yellow][WARN] Rackspace[:files] is deprecated, use Rackspace[:storage] instead[/]" warning << " [light_black](" << location << ")[/] " Formatador.display_line(warning) Fog::Rackspace::Storage.new when :servers location = caller.first warning = "[yellow][WARN] Rackspace[:servers] is deprecated, use Rackspace[:compute] instead[/]" warning << " [light_black](" << location << ")[/] " Formatador.display_line(warning) Fog::Rackspace::Compute.new when :storage Fog::Rackspace::Storage.new end end @@connections[service] end def services [:cdn, :compute, :storage] end end end
Version data entries
17 entries across 17 versions & 2 rubygems