class Roda::RodaPlugins::HashRoutes::DSL

def is(path, &block)

If path is +true+, the empty string is used as the path.
If path is given as a string, it is prefixed with a slash.
Use the segment to setup a path in the current namespace.
def is(path, &block)
  path = path == true ? "" : "/#{path}"
  @roda.hash_path(@namespace, path, &block)
end