7 8 9 10 11 12
# File 'lib/rake-pipeline/server.rb', line 7 def app not_found = proc { [404, { "Content-Type" => "text/plain" }, ["not found"]] } project = Rake::Pipeline::Project.new "Assetfile" Middleware.new(not_found, project) end