module ActiveSupport::Deprecation::Reporting
def deprecation_caller_message(callstack)
def deprecation_caller_message(callstack) file, line, method = extract_callstack(callstack) if file if line && method "(called from #{method} at #{file}:#{line})" else "(called from #{file}:#{line})" end end end