Sha256: aee0daf4fc92338263dc85619a1307c0ae675b1fe3277a4bdc2914769b6e510c
Contents?: true
Size: 269 Bytes
Versions: 65
Compression:
Stored size: 269 Bytes
Contents
module RR module WildcardMatchers class Anything def wildcard_match?(other) true end def ==(other) other.is_a?(self.class) end alias_method :eql?, :== def inspect 'anything' end end end end
Version data entries
65 entries across 61 versions & 9 rubygems