2010-06-29 15:18:17 -04:00
|
|
|
require "active_support/notifications"
|
|
|
|
|
2009-04-18 00:29:30 -04:00
|
|
|
module ActiveSupport
|
|
|
|
module Deprecation
|
2011-07-25 15:05:06 -04:00
|
|
|
# Whether to print a backtrace along with the warning.
|
|
|
|
attr_accessor :debug
|
2009-04-18 00:29:30 -04:00
|
|
|
|
2011-07-25 15:05:06 -04:00
|
|
|
# Returns the current behavior or if one isn't set, defaults to +:stderr+
|
|
|
|
def behavior
|
|
|
|
@behavior ||= [DEFAULT_BEHAVIORS[:stderr]]
|
|
|
|
end
|
2009-04-18 00:29:30 -04:00
|
|
|
|
2011-07-25 15:05:06 -04:00
|
|
|
# Sets the behavior to the specified value. Can be a single value, array, or
|
|
|
|
# an object that responds to +call+.
|
|
|
|
#
|
|
|
|
# Available behaviors:
|
|
|
|
#
|
|
|
|
# [+stderr+] Log all deprecation warnings to +$stderr+.
|
|
|
|
# [+log+] Log all deprecation warnings to +Rails.logger+.
|
|
|
|
# [+notify] Use +ActiveSupport::Notifications+ to notify +deprecation.rails+.
|
|
|
|
# [+silence+] Do nothing.
|
|
|
|
#
|
|
|
|
# Setting behaviors only affects deprecations that happen after boot time.
|
|
|
|
# Deprecation warnings raised by gems are not affected by this setting because
|
|
|
|
# they happen before Rails boots up.
|
|
|
|
#
|
|
|
|
# ActiveSupport::Deprecation.behavior = :stderr
|
|
|
|
# ActiveSupport::Deprecation.behavior = [:stderr, :log]
|
|
|
|
# ActiveSupport::Deprecation.behavior = MyCustomHandler
|
|
|
|
# ActiveSupport::Deprecation.behavior = proc { |message, callstack|
|
|
|
|
# # custom stuff
|
|
|
|
# }
|
|
|
|
def behavior=(behavior)
|
|
|
|
@behavior = Array(behavior).map { |b| DEFAULT_BEHAVIORS[b] || b }
|
2009-04-18 00:29:30 -04:00
|
|
|
end
|
|
|
|
|
2010-06-29 15:18:17 -04:00
|
|
|
# Default warning behaviors per Rails.env.
|
2009-04-18 00:29:30 -04:00
|
|
|
DEFAULT_BEHAVIORS = {
|
2010-06-29 15:18:17 -04:00
|
|
|
:stderr => Proc.new { |message, callstack|
|
2011-07-25 15:05:06 -04:00
|
|
|
$stderr.puts(message)
|
|
|
|
$stderr.puts callstack.join("\n ") if debug
|
|
|
|
},
|
2010-06-29 15:18:17 -04:00
|
|
|
:log => Proc.new { |message, callstack|
|
2009-10-14 20:54:45 -04:00
|
|
|
logger =
|
|
|
|
if defined?(Rails) && Rails.logger
|
|
|
|
Rails.logger
|
|
|
|
else
|
2012-01-04 11:42:25 -05:00
|
|
|
require 'active_support/logger'
|
|
|
|
ActiveSupport::Logger.new($stderr)
|
2009-10-14 20:54:45 -04:00
|
|
|
end
|
2009-04-18 00:29:30 -04:00
|
|
|
logger.warn message
|
|
|
|
logger.debug callstack.join("\n ") if debug
|
2010-06-29 15:18:17 -04:00
|
|
|
},
|
|
|
|
:notify => Proc.new { |message, callstack|
|
|
|
|
ActiveSupport::Notifications.instrument("deprecation.rails",
|
2012-04-15 09:21:06 -04:00
|
|
|
:message => message, :callstack => callstack)
|
|
|
|
},
|
|
|
|
:silence => Proc.new { |message, callstack| }
|
2009-04-18 00:29:30 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|