Returns:
3 4 5 6 7 8 9 10
# File 'lib/is_same/core_ext/regexp.rb', line 3 def matching?(object=nil, &block) case object when Class, Numeric, String, Symbol !!self.match("#{object}") else super end end