Sha256: 74a36d6cec110795094da933641bd6fa52d08c93b0f7348e3d4aec48d3ec39c4
Contents?: true
Size: 596 Bytes
Versions: 9
Compression:
Stored size: 596 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 property_supported :updated_on do node("Last Modified") { |value| Time.parse(value) } end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems