Sha256: bd2075a3ab4f90585b946b8baae6e317d08685e9fb99f8613a84d753de021b22
Contents?: true
Size: 1.07 KB
Versions: 26
Compression:
Stored size: 1.07 KB
Contents
#-- # Public Suffix # # Domain name parser based on the Public Suffix List. # # Copyright (c) 2009-2014 Simone Carletti <weppos@weppos.net> #++ module PublicSuffix class Error < StandardError end # Raised when trying to parse an invalid domain. # A domain is considered invalid when no rule is found # in the definition list. # # @example # # PublicSuffix.parse("nic.test") # # => PublicSuffix::DomainInvalid # # PublicSuffix.parse("http://www.nic.it") # # => PublicSuffix::DomainInvalid # class DomainInvalid < Error end # Raised when trying to parse a domain # which is formally defined by a rule, # but the rules set a requirement which is not satisfied # by the input you are trying to parse. # # @example # # PublicSuffix.parse("nic.do") # # => PublicSuffix::DomainNotAllowed # # PublicSuffix.parse("www.nic.do") # # => PublicSuffix::Domain # class DomainNotAllowed < DomainInvalid end # Backward Compatibility # # @deprecated Use {PublicSuffix::DomainInvalid}. # InvalidDomain = DomainInvalid end
Version data entries
26 entries across 26 versions & 3 rubygems