1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support/deprecation.rb

20 lines
598 B
Ruby
Raw Normal View History

require 'active_support/core_ext/module/deprecation'
2009-04-18 00:29:30 -04:00
require 'active_support/deprecation/behaviors'
require 'active_support/deprecation/reporting'
require 'active_support/deprecation/method_wrappers'
require 'active_support/deprecation/proxy_wrappers'
module ActiveSupport
module Deprecation
class << self
2009-04-18 00:29:30 -04:00
# The version the deprecated behavior will be removed, by default.
attr_accessor :deprecation_horizon
end
2011-04-25 13:55:09 -04:00
self.deprecation_horizon = '3.2'
2009-04-18 00:29:30 -04:00
# By default, warnings are not silenced and debugging is off.
self.silenced = false
2009-04-18 00:29:30 -04:00
self.debug = false
end
end