Sha256: e1170c8ff2760ec02f0b491a6d051fd7fe0ef6420e39a3b9ed9e6a66342126e4

Contents?: true

Size: 776 Bytes

Versions: 5

Compression:

Stored size: 776 Bytes

Contents

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


require 'whois/record/parser/base_shared1'


module Whois
  class Record
    class Parser

      # Parser for the whois.registry.om server.
      #
      # @see Whois::Record::Parser::Example
      #   The Example parser for the list of all available methods.
      #
      class WhoisRegistryOm < BaseShared1

        self.scanner = Scanners::BaseShared1, {
            pattern_reserved: /^Restricted\n/
        }


        property_supported :updated_on do
          node("Last Modified") { |value| Time.parse(value) }
        end


        def reserved?
          !!node('status:reserved')
        end

      end

    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
whois-3.6.2 lib/whois/record/parser/whois.registry.om.rb
whois-3.6.1 lib/whois/record/parser/whois.registry.om.rb
whois-3.6.0 lib/whois/record/parser/whois.registry.om.rb
whois-3.5.9 lib/whois/record/parser/whois.registry.om.rb
whois-3.5.8 lib/whois/record/parser/whois.registry.om.rb