1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #23052 from kamipo/update_deprecation_horizon

Update deprecation_horizon to 5.1 from 5.0 [ci skip]
This commit is contained in:
Rafael França 2016-01-15 03:25:54 -02:00
commit 06c33f22e0

View file

@ -21,15 +21,15 @@ module ActiveSupport
# # => [:aaa, :bbb, :ccc] # # => [:aaa, :bbb, :ccc]
# #
# Fred.aaa # 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 # # => nil
# #
# Fred.bbb # 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 # # => nil
# #
# Fred.ccc # 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 # # => nil
# #
# Passing in a custom deprecator: # Passing in a custom deprecator: