diff options
author | Cristian Bica <cristian.bica@gmail.com> | 2014-08-20 11:02:10 +0300 |
---|---|---|
committer | Cristian Bica <cristian.bica@gmail.com> | 2014-08-20 11:02:44 +0300 |
commit | df773ca7c2258f1ae68e43314570ee9544d2cc7c (patch) | |
tree | aca1d184114e42f5bc83cf5fcf6cc361c5b81d7e /activesupport | |
parent | 24a9bc4fc8d0885c64e27a62fb2703416c6ab95d (diff) | |
download | rails-df773ca7c2258f1ae68e43314570ee9544d2cc7c.tar.gz rails-df773ca7c2258f1ae68e43314570ee9544d2cc7c.tar.bz2 rails-df773ca7c2258f1ae68e43314570ee9544d2cc7c.zip |
Updated the deprecation warnings to 5.0
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/deprecation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation.rb b/activesupport/lib/active_support/deprecation.rb index ab16977bda..46e9996d59 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 = '4.2', gem_name = 'Rails') + def initialize(deprecation_horizon = '5.0', gem_name = 'Rails') self.gem_name = gem_name self.deprecation_horizon = deprecation_horizon # By default, warnings are not silenced and debugging is off. |