Sha256: 7720a20ef58f7893473f0f3765e94af1fb6d2662b7fbeb4071b5c345ea3f907e

Contents?: true

Size: 992 Bytes

Versions: 14

Compression:

Stored size: 992 Bytes

Contents

class Rackspace < Fog::Bin
  class << self

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        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
      [:compute, :storage]
    end

  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fog-0.3.13 lib/fog/rackspace/bin.rb
fog-0.3.12 lib/fog/rackspace/bin.rb
fog-0.3.11 lib/fog/rackspace/bin.rb
fog-0.3.10 lib/fog/rackspace/bin.rb
fog-0.3.9 lib/fog/rackspace/bin.rb
fog-0.3.8 lib/fog/rackspace/bin.rb
fog-0.3.7 lib/fog/rackspace/bin.rb
fog-0.3.6 lib/fog/rackspace/bin.rb
fog-0.3.5 lib/fog/rackspace/bin.rb
fog-0.3.4 lib/fog/rackspace/bin.rb
fog-0.3.3 lib/fog/rackspace/bin.rb
fog-0.3.2 lib/fog/rackspace/bin.rb
fog-0.3.1 lib/fog/rackspace/bin.rb
fog-0.3.0 lib/fog/rackspace/bin.rb