It differs from the legacy router:
* it provides somewhat granular errors: "path not found", "method not allowed".
* it handles matching routes with extensions (e.g. /books/{id}.json)
* it handles path patterns with a different syntax (e.g. /params/{x}/{y}/{z:.*})
NewRouter creates a gorilla/mux router.
Assumes spec is .Validate()d
TODO: Handle/HandlerFunc + ServeHTTP (When there is a match, the route variables can be retrieved calling mux.Vars(request))