Sha256: b6d054b986c5048d7a0244f077314b7eddbd9d627f1b5f9663b0e0942ece7235
Contents?: true
Size: 657 Bytes
Versions: 7
Compression:
Stored size: 657 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_icann_compliant' module Whois class Record class Parser # Parser for the whois.register.com server. # # @see Whois::Record::Parser::Example # The Example parser for the list of all available methods. # class WhoisRegisterCom < BaseIcannCompliant property_supported :updated_on do node('Updated Date') do |value| parse_time(value) unless value.empty? end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems