Sha256: ee3a5af6177e8f1254509747db2a085e5ca02046a6739e02efd5725dc4677afa

Contents?: true

Size: 659 Bytes

Versions: 17

Compression:

Stored size: 659 Bytes

Contents

module Fog
  module Parsers
    module Zerigo
      module DNS

        class FindHosts < Fog::Parsers::Base

          def reset
            @host = {}
            @response = { 'hosts' => [] }
          end

          def end_element(name)
            case name
            when 'id', 'priority', 'ttl', 'zone-id'
              @host[name] = @value.to_i
            when 'data', 'fqdn', 'host-type', 'hostname', 'notes', 'zone-id', 'created-at', 'updated-at'
              @host[name] = @value
            when 'host'
              @response['hosts'] << @host
              @host = {}
            end
          end

        end

      end
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
fog-0.7.2 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.7.1 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.7.0 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.6.0 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.5.3 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.5.2 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.5.1 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.5.0 lib/fog/dns/parsers/zerigo/find_hosts.rb
phpfog-fog-0.4.1.3 lib/fog/dns/parsers/zerigo/find_hosts.rb
phpfog-fog-0.4.1.2 lib/fog/dns/parsers/zerigo/find_hosts.rb
phpfog-fog-0.4.1.1 lib/fog/dns/parsers/zerigo/find_hosts.rb
phpfog-fog-0.4.1 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.4.1 lib/fog/dns/parsers/zerigo/find_hosts.rb
fog-0.4.0 lib/fog/zerigo/parsers/dns/find_hosts.rb
fog-0.3.34 lib/fog/zerigo/parsers/dns/find_hosts.rb
fog-0.3.33 lib/fog/zerigo/parsers/dns/find_hosts.rb
fog-0.3.32 lib/fog/zerigo/parsers/dns/find_hosts.rb