You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 08936f9 ("(MAINT) Rubocop: Fix
Performance/RegexpMatch"), a few Regexp matches were switched from `=~`
to `.match?`. Unfortuantely, `.match?` [wasn’t introduced until Ruby
2.4.6][match?], so that broke Ruby 2.3.0 compatibility.
This reverts that commit and disables the relevant rubocop check.
[match?]: https://apidock.com/ruby/String/match%3F
0 commit comments