lib/active_support/deprecation.rb in activesupport-3.0.20 vs lib/active_support/deprecation.rb in activesupport-3.1.0.beta1

- old
+ new

@@ -2,15 +2,15 @@ require 'active_support/deprecation/reporting' require 'active_support/deprecation/method_wrappers' require 'active_support/deprecation/proxy_wrappers' module ActiveSupport - module Deprecation #:nodoc: + module Deprecation class << self # The version the deprecated behavior will be removed, by default. attr_accessor :deprecation_horizon end - self.deprecation_horizon = '3.0' + self.deprecation_horizon = '3.2' # By default, warnings are not silenced and debugging is off. self.silenced = false self.debug = false end