Sha256: 272b18d8cdc18e2a76fe8d92e98ab33c6a847b3bdcae1f63dbcc2edbb3fbd7d0

Contents?: true

Size: 701 Bytes

Versions: 7

Compression:

Stored size: 701 Bytes

Contents

class DNSimple < Fog::Bin
  class << self

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

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :dns
          Formatador.display_line("[yellow][WARN] DNSimple[:dns] is deprecated, use Storage[:dnsimple] instead[/]")
          Fog::DNS.new(:provider => 'DNSimple')
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::DNSimple.services
    end

  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsimple.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/bin/dnsimple.rb
fog-0.11.0 lib/fog/bin/dnsimple.rb
fog-0.10.0 lib/fog/bin/dnsimple.rb
fog4encbs-0.9.0.1 lib/fog/bin/dnsimple.rb
fog4encbs-0.9.0 lib/fog/bin/dnsimple.rb
fog-0.9.0 lib/fog/bin/dnsimple.rb