aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2019-07-29 13:33:03 +0900
committerAkira Matsuda <ronnie@dio.jp>2019-07-29 14:17:36 +0900
commit381e8cb67abec7d2ceb812fde587d924667de122 (patch)
treeebfaffe8ee31c7223963d7221b63eef1a7957d95 /activesupport/lib
parentd55dea5ef1cde3172d83f12a7ded96a9603dcaa9 (diff)
downloadrails-381e8cb67abec7d2ceb812fde587d924667de122.tar.gz
rails-381e8cb67abec7d2ceb812fde587d924667de122.tar.bz2
rails-381e8cb67abec7d2ceb812fde587d924667de122.zip
Add AS::Multibyte::Chars#match?
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/multibyte/chars.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb
index 2ba3936cae..868cb70423 100644
--- a/activesupport/lib/active_support/multibyte/chars.rb
+++ b/activesupport/lib/active_support/multibyte/chars.rb
@@ -48,7 +48,7 @@ module ActiveSupport #:nodoc:
alias to_s wrapped_string
alias to_str wrapped_string
- delegate :<=>, :=~, :acts_like_string?, to: :wrapped_string
+ delegate :<=>, :=~, :match?, :acts_like_string?, to: :wrapped_string
# Creates a new Chars instance by wrapping _string_.
def initialize(string)