module Sprockets::Server

def not_found_response

Returns a 404 Not Found response tuple
def not_found_response
  [ 404, { "Content-Type" => "text/plain", "Content-Length" => "9", "X-Cascade" => "pass" }, [ "Not found" ] ]
end