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

Version Path
fog-0.3.29 lib/fog/rackspace/bin.rb
fog-0.3.28 lib/fog/rackspace/bin.rb
fog-0.3.27 lib/fog/rackspace/bin.rb
fog-0.3.26 lib/fog/rackspace/bin.rb
fog-0.3.25 lib/fog/rackspace/bin.rb
fog-0.3.24 lib/fog/rackspace/bin.rb
bbcloud-0.8.1 lib/bbcloud/vendor/fog-0.3.23/lib/fog/rackspace/bin.rb
fog-0.3.23 lib/fog/rackspace/bin.rb
fog-0.3.22 lib/fog/rackspace/bin.rb
fog-0.3.21 lib/fog/rackspace/bin.rb
fog-0.3.20 lib/fog/rackspace/bin.rb
fog-0.3.19 lib/fog/rackspace/bin.rb
fog-0.3.18 lib/fog/rackspace/bin.rb
fog-0.3.17 lib/fog/rackspace/bin.rb
fog-0.3.16 lib/fog/rackspace/bin.rb
fog-0.3.15 lib/fog/rackspace/bin.rb
fog-0.3.14 lib/fog/rackspace/bin.rb