module Roda::RodaPlugins::StaticRouting::InstanceMethods
def _roda_before_30__static_routing
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