Method: BugGuard#match?

Defined in:
lib/mspec/guards/bug.rb

#match?Boolean

Returns:

  • (Boolean)


10
11
12
13
# File 'lib/mspec/guards/bug.rb', line 10

def match?
  return false if MSpec.mode? :no_ruby_bug
  standard? && ruby_version <= @version
end