module Roda::RodaPlugins::StaticRouting::InstanceMethods

def _roda_before_30__static_routing

instead having the routing tree handle the request.
If there is a static routing method for the given path, call it
def _roda_before_30__static_routing
  r = @_request
  if route = self.class.static_route_for(r.request_method, r.path_info)
    r.static_route(&route)
  end
end