Sha256: fadddeb51a5f3260eddea103394f91823bbfd6e2595e50003e7c1b32fcd6777a

Contents?: true

Size: 717 Bytes

Versions: 7

Compression:

Stored size: 717 Bytes

Contents

class Slicehost < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :compute
        Fog::Slicehost::Compute
      when :dns
        Fog::Slicehost::DNS
      else 
        raise ArgumentError, "Unrecognized service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :compute
          Fog::Compute.new(:provider => 'Slicehost')
        when :dns
          Fog::DNS.new(:provider => 'Slicehost')
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::Slicehost.services
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-0.8.2 lib/fog/bin/slicehost.rb
fog-0.8.1 lib/fog/bin/slicehost.rb
fog-0.8.0 lib/fog/bin/slicehost.rb
fog-0.7.2 lib/fog/bin/slicehost.rb
fog-0.7.1 lib/fog/bin/slicehost.rb
fog-0.7.0 lib/fog/bin/slicehost.rb
fog-0.6.0 lib/fog/bin/slicehost.rb