# File lib/core/facets/regexp/op_or.rb, line 12 def |(other) other = Regexp.escape(other) if other.is_a?(String) /#{self}|#{other}/ end