module ActiveSupport::Deprecation::Reporting
def deprecation_warning(deprecated_method_name, message = nil, caller_backtrace = nil)
def deprecation_warning(deprecated_method_name, message = nil, caller_backtrace = nil) caller_backtrace ||= caller_locations(2) deprecated_method_warning(deprecated_method_name, message).tap do |msg| warn(msg, caller_backtrace) end end