Sha256: dd35b38a6d609c74a1a95eec8654837e9f62cd5f3a7d62072bf16fb1a3bd3a3c

Contents?: true

Size: 1002 Bytes

Versions: 8

Compression:

Stored size: 1002 Bytes

Contents

#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
# Copyright (c) 2009-2013 Simone Carletti <weppos@weppos.net>
#++


require 'whois/record/parser/base_whoisd'


module Whois
  class Record
    class Parser

      # Parser for the whois.nic.fo server.
      #
      # @see Whois::Record::Parser::Example
      #   The Example parser for the list of all available methods.
      #
      # @since  2.6.4
      class WhoisNicFo < BaseWhoisd

        property_not_supported :registrar

        # whois.nic.fo is using an old whoisd version.
        property_supported :technical_contacts do
          node('tech-c') do |value|
            build_contact(value, Record::Contact::TYPE_TECHNICAL)
          end
        end


        # whois.nic.fo is using an old whoisd version.
        property_supported :nameservers do
          Array.wrap(node('nserver')).map do |line|
            Record::Nameserver.new(:name => line.strip)
          end
        end

      end

    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
whois-3.3.0 lib/whois/record/parser/whois.nic.fo.rb
whois-3.2.1 lib/whois/record/parser/whois.nic.fo.rb
whois-3.2.0 lib/whois/record/parser/whois.nic.fo.rb
whois-3.1.3 lib/whois/record/parser/whois.nic.fo.rb
whois-3.1.2 lib/whois/record/parser/whois.nic.fo.rb
whois-3.1.1 lib/whois/record/parser/whois.nic.fo.rb
whois-3.1.0 lib/whois/record/parser/whois.nic.fo.rb
whois-3.0.0 lib/whois/record/parser/whois.nic.fo.rb