holywyvern/carbuncle

View on GitHub
gems/carbuncle-support/mrblib/regexp_compat.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Regexp
  def match?(*args)
    match(*args.map(&:to_s)).present?
  end
end