Sha256: 7b609c8edd84d35cda129de4e45392fa979945b05141f70646299c59c4f7c159

Contents?: true

Size: 704 Bytes

Versions: 43

Compression:

Stored size: 704 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

43 entries across 41 versions & 6 rubygems

Version Path
fog-1.33.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.32.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.31.0 lib/fog/bin/dnsmadeeasy.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/bin/dnsmadeeasy.rb
fog-1.30.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.29.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.28.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.27.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.26.0 lib/fog/bin/dnsmadeeasy.rb
fog-1.25.0 lib/fog/bin/dnsmadeeasy.rb
nsidc-fog-1.24.1 lib/fog/bin/dnsmadeeasy.rb
fog-1.24.0 lib/fog/bin/dnsmadeeasy.rb
ns-fog-1.22.11 lib/fog/bin/dnsmadeeasy.rb
ns-fog-1.22.10 lib/fog/bin/dnsmadeeasy.rb
ns-fog-1.22.9 lib/fog/bin/dnsmadeeasy.rb
ns-fog-1.22.8 lib/fog/bin/dnsmadeeasy.rb
ns-fog-1.22.7 lib/fog/bin/dnsmadeeasy.rb
ns-fog-1.22.6 lib/fog/bin/dnsmadeeasy.rb
fog-1.23.0 lib/fog/bin/dnsmadeeasy.rb
ns-fog-1.22.4 lib/fog/bin/dnsmadeeasy.rb