diff options
author | wangjohn <wangjohn@mit.edu> | 2013-08-24 23:33:56 -0400 |
---|---|---|
committer | wangjohn <wangjohn@mit.edu> | 2013-08-24 23:34:43 -0400 |
commit | 3fd134c5594a4c05934a41bb66db4048ab5e3cb9 (patch) | |
tree | 846ec697ef56890206835c1de15a32827bbd19b0 /activesupport/lib/active_support | |
parent | 539180cf8edaa405928162644dc617b4c179edff (diff) | |
download | rails-3fd134c5594a4c05934a41bb66db4048ab5e3cb9.tar.gz rails-3fd134c5594a4c05934a41bb66db4048ab5e3cb9.tar.bz2 rails-3fd134c5594a4c05934a41bb66db4048ab5e3cb9.zip |
Changing deprecation_horizon to be Rails 4.2
Also, +ActiveRecord::Migrator.proper_table_name+ should actually have a
deprecation horizon of Rails 4.2 (not 4.1).
Diffstat (limited to 'activesupport/lib/active_support')
-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 0281c9222e..ab16977bda 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.1', gem_name = 'Rails') + def initialize(deprecation_horizon = '4.2', gem_name = 'Rails') self.gem_name = gem_name self.deprecation_horizon = deprecation_horizon # By default, warnings are not silenced and debugging is off. |