Sha256: bac70fa530c34473accbf081c81784ed77c704b8f38694d0b9f0d9902d054439

Contents?: true

Size: 694 Bytes

Versions: 61

Compression:

Stored size: 694 Bytes

Contents

class Dreamhost < Fog::Bin
  class << self

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

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

    def services
      Fog::Dreamhost.services
    end

  end
end

Version data entries

61 entries across 61 versions & 6 rubygems

Version Path
fog-1.22.0 lib/fog/bin/dreamhost.rb
fog-1.21.0 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/bin/dreamhost.rb
fog-1.20.0 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/bin/dreamhost.rb
fog-1.19.0 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/bin/dreamhost.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/bin/dreamhost.rb