Class: Regexp

Inherits:
Object show all
Defined in:
lib/is_same/core_ext/regexp.rb

Instance Method Summary collapse

Instance Method Details

#matching?(object = nil, &block) ⇒ Boolean

Returns:

  • (Boolean)


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