diff options
author | Xavier Noria <fxn@hashref.com> | 2016-10-27 09:13:38 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2016-10-27 09:13:55 +0200 |
commit | 56832e791f3ec3e586cf049c6408c7a183fdd3a1 (patch) | |
tree | 6dcbbf04047cf7b7bbcdaf83410c6b872b1d3928 /activesupport | |
parent | b27a08735c90116d788cd87441205fba663ce6c3 (diff) | |
download | rails-56832e791f3ec3e586cf049c6408c7a183fdd3a1.tar.gz rails-56832e791f3ec3e586cf049c6408c7a183fdd3a1.tar.bz2 rails-56832e791f3ec3e586cf049c6408c7a183fdd3a1.zip |
let Regexp#match? be globally available
Regexp#match? should be considered to be part of the Ruby core library. We are
emulating it for < 2.4, but not having to require the extension is part of the
illusion of the emulation.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/rails.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/rails.rb b/activesupport/lib/active_support/rails.rb index 57380061f7..f6b018f0d3 100644 --- a/activesupport/lib/active_support/rails.rb +++ b/activesupport/lib/active_support/rails.rb @@ -25,3 +25,9 @@ require "active_support/core_ext/module/delegation" # Defines ActiveSupport::Deprecation. require "active_support/deprecation" + +# Defines Regexp#match?. +# +# This should be removed when Rails needs Ruby 2.4 or later, and the require +# added where other Regexp extensions are being used (easy to grep). +require "active_support/core_ext/regexp" |