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
fog-maestrodev-1.18.0.20131209090811 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/bin/dnsmadeeasy.rb
gapinc-fog-1.12.1.2.1 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/bin/dnsmadeeasy.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/bin/dnsmadeeasy.rb
fog-1.18.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.17.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.16.0 lib/fog/bin/dnsmadeeasy.rb