aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorKoichi ITO <koic.ito@gmail.com>2017-06-30 00:48:03 +0900
committerKoichi ITO <koic.ito@gmail.com>2017-06-30 00:48:03 +0900
commit43c8877c293d00ccfb3849359a07fa59ee5ac95d (patch)
tree628c59fa7f83308d10d35f773196d301150bb55e /activesupport
parent47c74e3dfe4e2532f9a4bc631b73b03fd7623fb8 (diff)
downloadrails-43c8877c293d00ccfb3849359a07fa59ee5ac95d.tar.gz
rails-43c8877c293d00ccfb3849359a07fa59ee5ac95d.tar.bz2
rails-43c8877c293d00ccfb3849359a07fa59ee5ac95d.zip
Fix the next version of Rails from 5.3 to 6.0
Diffstat (limited to 'activesupport')
-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 35cddcfde6..d1e6502669 100644
--- a/activesupport/lib/active_support/deprecation.rb
+++ b/activesupport/lib/active_support/deprecation.rb
@@ -33,7 +33,7 @@ module ActiveSupport
# and the second is a library name.
#
# ActiveSupport::Deprecation.new('2.0', 'MyLibrary')
- def initialize(deprecation_horizon = "5.3", gem_name = "Rails")
+ def initialize(deprecation_horizon = "6.0", gem_name = "Rails")
self.gem_name = gem_name
self.deprecation_horizon = deprecation_horizon
# By default, warnings are not silenced and debugging is off.