class Syntropy::Router
def find_route_entry(path)
def find_route_entry(path) return NOT_FOUND if path =~ FORBIDDEN_RE @routes[path] || find_index_route(path) || find_up_tree_module(path) || NOT_FOUND end
def find_route_entry(path) return NOT_FOUND if path =~ FORBIDDEN_RE @routes[path] || find_index_route(path) || find_up_tree_module(path) || NOT_FOUND end