module Roda::RodaPlugins::HashPaths::RequestMethods

def hash_paths(namespace=matched_path)

remaining path, and dispatch to that block if there is one.
Checks the matching hash_path namespace for a branch matching the
def hash_paths(namespace=matched_path)
  if (routes = roda_class.opts[:hash_paths][namespace]) && (meth = routes[@remaining_path])
    @remaining_path = ''
    always{scope.send(meth, self)}
  end
end