aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/regexp.rb
blob: d92943c7ae72b1280e7184f99c63dff778f25fe1 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Regexp #:nodoc:
  def multiline?
    options & MULTILINE == MULTILINE
  end
end