aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/deprecation.rb
blob: e3b4a7240ec45912d0a86f36d0c490607cb9b33c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'active_support/core_ext/module/deprecation'
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
      # The version the deprecated behavior will be removed, by default.
      attr_accessor :deprecation_horizon
    end
    self.deprecation_horizon = '4.1'

    # By default, warnings are not silenced and debugging is off.
    self.silenced = false
    self.debug = false
  end
end