Class: Regexp

Inherits:
Object show all
Defined in:
activesupport/lib/active_support/core_ext/regexp.rb,
activesupport/lib/active_support/json/encoding.rb
more...

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#as_json(options = nil) ⇒ Object

:nodoc:

[View source]

255
256
257
# File 'activesupport/lib/active_support/json/encoding.rb', line 255

def as_json(options = nil) #:nodoc:
  to_s
end

#multiline?Boolean

Returns:

  • (Boolean)
[View source]

2
3
4
# File 'activesupport/lib/active_support/core_ext/regexp.rb', line 2

def multiline?
  options & MULTILINE == MULTILINE
end