aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/regexp.rb
blob: 784145f5fbd632e03c1ff0df0e5604efce3fe1cd (plain) (blame)
1
2
3
4
5
class Regexp #:nodoc:
  def multiline?
    options & MULTILINE == MULTILINE
  end
end