Fixed Regexp.new syntax

lolsob-rspec
kibigo! 2017-06-28 15:16:13 -07:00
parent 40358c906a
commit ebab7cd156
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class FrontmatterHandler
# CONVENIENCE FUNCTIONS #
def self.unirex(str)
Regexp.new str, false, 'um'
Regexp.new str, Regexp::MULTILINE, 'u'
end
def self.rexstr(exp)
'(?:' + exp.source + ')'