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
Fix Regexp.new deprecated third argument usage (#2)
At least since ruby 2.7, passing 'n' code option to the third
argument of Regexp.new is the same as specifying
Regexp::NOENCODING to the second argument.
Now with ruby 3.2, using third argument is declared deprecated,
and with ruby 3.3, third argument support is removed:
ruby/ruby#7039
To handle ruby 3.3, fix Regexp.new usage as above.
0 commit comments