diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-01-15 03:25:54 -0200 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2016-01-15 03:25:54 -0200 |
commit | 06c33f22e008316ac56993e80aa389e12a3309e4 (patch) | |
tree | a9b6837dd1e3428b504b624a019d7b331c9572d3 /activesupport | |
parent | 13fc49509b691b340945bca95a833df2da466b23 (diff) | |
parent | 478930bb6798bf58d57ca14b3165472b69f86c29 (diff) | |
download | rails-06c33f22e008316ac56993e80aa389e12a3309e4.tar.gz rails-06c33f22e008316ac56993e80aa389e12a3309e4.tar.bz2 rails-06c33f22e008316ac56993e80aa389e12a3309e4.zip |
Merge pull request #23052 from kamipo/update_deprecation_horizon
Update deprecation_horizon to 5.1 from 5.0 [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/deprecation/method_wrappers.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/deprecation/method_wrappers.rb b/activesupport/lib/active_support/deprecation/method_wrappers.rb index 32fe8025fe..f5ea6669ce 100644 --- a/activesupport/lib/active_support/deprecation/method_wrappers.rb +++ b/activesupport/lib/active_support/deprecation/method_wrappers.rb @@ -21,15 +21,15 @@ module ActiveSupport # # => [:aaa, :bbb, :ccc] # # Fred.aaa - # # DEPRECATION WARNING: aaa is deprecated and will be removed from Rails 5.0. (called from irb_binding at (irb):10) + # # DEPRECATION WARNING: aaa is deprecated and will be removed from Rails 5.1. (called from irb_binding at (irb):10) # # => nil # # Fred.bbb - # # DEPRECATION WARNING: bbb is deprecated and will be removed from Rails 5.0 (use zzz instead). (called from irb_binding at (irb):11) + # # DEPRECATION WARNING: bbb is deprecated and will be removed from Rails 5.1 (use zzz instead). (called from irb_binding at (irb):11) # # => nil # # Fred.ccc - # # DEPRECATION WARNING: ccc is deprecated and will be removed from Rails 5.0 (use Bar#ccc instead). (called from irb_binding at (irb):12) + # # DEPRECATION WARNING: ccc is deprecated and will be removed from Rails 5.1 (use Bar#ccc instead). (called from irb_binding at (irb):12) # # => nil # # Passing in a custom deprecator: |