Sha256: 430347cf3e06a94e4bd29d4f649b732bc97b764bc088ff16d5676a6b65887163

Contents?: true

Size: 697 Bytes

Versions: 76

Compression:

Stored size: 697 Bytes

Contents

class Atmos < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :storage
        Fog::Storage::Atmos
      else
        raise ArgumentError, "Unsupported #{self} service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :storage
          Fog::Logger.warning("Atmos[:storage] is not recommended, use Storage[:atmos] for portability")
          Fog::Storage.new(:provider => 'Atmos')
        else
          raise ArgumentError, "Unrecognized service: #{service}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::Atmos.services
    end

  end
end

Version data entries

76 entries across 76 versions & 11 rubygems

Version Path
fog-maestrodev-1.15.0.20130927082724 lib/fog/bin/atmos.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/bin/atmos.rb
fog-1.15.0 lib/fog/bin/atmos.rb
gapinc-fog-1.14.0 lib/fog/bin/atmos.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/bin/atmos.rb
fog-1.14.0 lib/fog/bin/atmos.rb
fog-1.13.0 lib/fog/bin/atmos.rb
gapinc-fog-1.12.1.2 lib/fog/bin/atmos.rb
gapinc-fog-1.12.1.1 lib/fog/bin/atmos.rb
gapinc-fog-1.12.1a lib/fog/bin/atmos.rb
gapinc-fog-1.12.1 lib/fog/bin/atmos.rb
fog-1.12.1 lib/fog/bin/atmos.rb
fog-1.12.0 lib/fog/bin/atmos.rb
hpfog-0.0.20 lib/fog/bin/atmos.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/bin/atmos.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/bin/atmos.rb
fog-nirvanix-1.8.2 lib/fog/bin/atmos.rb
fog-1.11.1 lib/fog/bin/atmos.rb
fog-1.11.0 lib/fog/bin/atmos.rb
fog-nirvanix-1.8.1 lib/fog/bin/atmos.rb