Sha256: 2d44151d6ad5a54199643e5683896f85c5fa6f8dfc5a84d1c5d2a5fc4066227b

Contents?: true

Size: 1.53 KB

Versions: 7

Compression:

Stored size: 1.53 KB

Contents

class Rackspace < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :cdn
        Fog::Rackspace::CDN
      when :compute, :servers
        Fog::Rackspace::Compute
      when :files, :storage
        Fog::Rackspace::Storage
      else 
        raise ArgumentError, "Unrecognized service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :cdn
          Fog::CDN.new(:provider => 'Rackspace')
        when :compute
          Fog::Compute.new(:provider => 'Rackspace')
        when :dns
          Fog::DNS.new(:provider => 'Rackspace')
        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::Storage.new(:provider => 'Rackspace')
        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::Compute.new(:provider => Rackspace)
        when :storage
          Fog::Storage.new(:provider => 'Rackspace')
        else
          raise ArgumentError, "Unrecognized service: #{service}"
        end
      end
      @@connections[service]
    end

    def services
      [:cdn, :compute, :storage]
    end

  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
fog-0.5.1 lib/fog/bin/rackspace.rb
fog-0.5.0 lib/fog/bin/rackspace.rb
phpfog-fog-0.4.1.3 lib/fog/bin/rackspace.rb
phpfog-fog-0.4.1.2 lib/fog/bin/rackspace.rb
phpfog-fog-0.4.1.1 lib/fog/bin/rackspace.rb
phpfog-fog-0.4.1 lib/fog/bin/rackspace.rb
fog-0.4.1 lib/fog/bin/rackspace.rb