class Sprockets::Deprecation

def deprecation_caller_message

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