- download google-closures templates from https://github.com/lightbody/closure-templates and "mvn install" it
- edit able-example and run Main
Get yorself a copy of "Able.class" and start settings up routes and, ultimately, running .server.start()
// sample route definition
able.router.route("^/$", Homepage.class);
// with groups
able.router.route("^/hello/(.*)/$", Homepage.class);
// with named groups
able.router.route("^/hello/group/(?<person>.*)/$", Homepage.class);
TODO
TODO