Sha256: ce865e8e2c1b2bda07955dbed154159c1b7b5ce45416a72672f1a76e2887e327

Contents?: true

Size: 706 Bytes

Versions: 98

Compression:

Stored size: 706 Bytes

Contents

class DNSMadeEasy < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :dns
        Fog::DNS::DNSMadeEasy
      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("DNSMadeEasy[:dns] is not recommended, use DNS[:dnsmadeeasy] for portability")
          Fog::DNS.new(:provider => 'DNSMadeEasy')
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::DNSMadeEasy.services
    end

  end
end

Version data entries

98 entries across 98 versions & 17 rubygems

Version Path
michiels-fog-1.3.1 lib/fog/bin/dnsmadeeasy.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/bin/dnsmadeeasy.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsmadeeasy.rb
fog-1.3.1 lib/fog/bin/dnsmadeeasy.rb
fog-1.3.0 lib/fog/bin/dnsmadeeasy.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsmadeeasy.rb
fog-1.2.0 lib/fog/bin/dnsmadeeasy.rb
ktheory-fog-1.1.2 lib/fog/bin/dnsmadeeasy.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsmadeeasy.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsmadeeasy.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsmadeeasy.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsmadeeasy.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsmadeeasy.rb
fog-1.1.2 lib/fog/bin/dnsmadeeasy.rb
fog_tractical-1.1.4 lib/fog/bin/dnsmadeeasy.rb
fog_tractical-1.1.3 lib/fog/bin/dnsmadeeasy.rb
fog-1.1.1 lib/fog/bin/dnsmadeeasy.rb
fog-1.1.0 lib/fog/bin/dnsmadeeasy.rb