Sha256: 404748030c4c0295b20a53efd7db38ba57d2779685a36e061f3545c02d3bd0d1

Contents?: true

Size: 559 Bytes

Versions: 107

Compression:

Stored size: 559 Bytes

Contents

class Dynect < Fog::Bin
  class << self

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

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :dns
          Fog::DNS.new(:provider => 'Dynect')
        else
          raise ArgumentError, "Unrecognized service: #{service}"
        end
      end
      @@connections[service]
    end

    def services
      [:dns]
    end

  end
end

Version data entries

107 entries across 107 versions & 18 rubygems

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