aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/deprecation.rb
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2017-07-01 18:17:25 +0930
committerGitHub <noreply@github.com>2017-07-01 18:17:25 +0930
commit1613eaf829a1f64f5be30b070184f6b3378d5801 (patch)
tree6fbe9cefd523f5c1963dbe188a826c08987dfb8f /activesupport/lib/active_support/deprecation.rb
parent4dd5bf5f33ca74fb8c744be4c5dfbd206dddb83d (diff)
parent43c8877c293d00ccfb3849359a07fa59ee5ac95d (diff)
downloadrails-1613eaf829a1f64f5be30b070184f6b3378d5801.tar.gz
rails-1613eaf829a1f64f5be30b070184f6b3378d5801.tar.bz2
rails-1613eaf829a1f64f5be30b070184f6b3378d5801.zip
Merge pull request #29629 from koic/fix_next_version_of_rails
Fix the next version of Rails from 5.3 to 6.0
Diffstat (limited to 'activesupport/lib/active_support/deprecation.rb')
-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.