Sha256: 8dc877fd6158b1d9f384ef1795c82d1ed8df93214843e7a07ed76b681d35dadf
Contents?: true
Size: 1.11 KB
Versions: 5
Compression:
Stored size: 1.11 KB
Contents
#-- # Public Suffix # # Domain name parser based on the Public Suffix List. # # Copyright (c) 2009-2012 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 # # @since 0.6.0 # 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 # # @since 0.6.0 # class DomainNotAllowed < DomainInvalid end # Backward Compatibility # # @deprecated Use {PublicSuffix::DomainInvalid}. # InvalidDomain = DomainInvalid end
Version data entries
5 entries across 5 versions & 1 rubygems