class JsTestServer::Server::Resources::WebRoot < JsTestServer::Server::Resources::File map "/" get("") do "Welcome to the Js Test Server. Click the following link to run you spec suite." end get("*") do do_get end protected def root_path JsTestServer::Configuration.js_test_server_root_path end end