aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2016-05-10 01:40:52 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2016-05-10 03:46:56 -0300
commit01a38b04fbc03b97d02f1e65c20fd67de3bcfe95 (patch)
treede95ed5f4d8864bb010107fff965085759e49a88 /activesupport/lib
parent697ab08af981a6c9089540883e85414c2457a881 (diff)
downloadrails-01a38b04fbc03b97d02f1e65c20fd67de3bcfe95.tar.gz
rails-01a38b04fbc03b97d02f1e65c20fd67de3bcfe95.tar.bz2
rails-01a38b04fbc03b97d02f1e65c20fd67de3bcfe95.zip
Bump the deprecation horizon
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/deprecation.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation.rb b/activesupport/lib/active_support/deprecation.rb
index 24545d766c..b581710067 100644
--- a/activesupport/lib/active_support/deprecation.rb
+++ b/activesupport/lib/active_support/deprecation.rb
@@ -32,7 +32,7 @@ module ActiveSupport
# and the second is a library name
#
# ActiveSupport::Deprecation.new('2.0', 'MyLibrary')
- def initialize(deprecation_horizon = '5.1', gem_name = 'Rails')
+ def initialize(deprecation_horizon = '5.2', gem_name = 'Rails')
self.gem_name = gem_name
self.deprecation_horizon = deprecation_horizon
# By default, warnings are not silenced and debugging is off.