diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2019-01-15 17:02:22 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2019-01-17 16:08:33 -0500 |
commit | 0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689 (patch) | |
tree | b94dfc8450a782d99523c242e5bda269dbef390d /activesupport/lib | |
parent | 6c745b0c5152a4437163a67707e02f4464493983 (diff) | |
download | rails-0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689.tar.gz rails-0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689.tar.bz2 rails-0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689.zip |
Remove deprecated `#acronym_regex` method from `Inflections`
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/inflector/inflections.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/inflector/inflections.rb b/activesupport/lib/active_support/inflector/inflections.rb index fa087c4dd6..88cdd99dbd 100644 --- a/activesupport/lib/active_support/inflector/inflections.rb +++ b/activesupport/lib/active_support/inflector/inflections.rb @@ -65,8 +65,7 @@ module ActiveSupport @__instance__[locale] ||= new end - attr_reader :plurals, :singulars, :uncountables, :humans, :acronyms, :acronym_regex - deprecate :acronym_regex + attr_reader :plurals, :singulars, :uncountables, :humans, :acronyms attr_reader :acronyms_camelize_regex, :acronyms_underscore_regex # :nodoc: |