Sha256: a3f023ddbc0e6942625357bf561db1856a8aac4c67ab6d794af82869678a1374
Contents?: true
Size: 262 Bytes
Versions: 22
Compression:
Stored size: 262 Bytes
Contents
module RR module WildcardMatchers class Anything def wildcard_match?(other) true end def ==(other) other.is_a?(self.class) end alias :eql? :== def inspect 'anything' end end end end
Version data entries
22 entries across 22 versions & 1 rubygems