module Roda::RodaPlugins::StaticRouting::InstanceMethods
def call
If there is a static routing method for the given path, call it
def call r = @_request path_info = r.env['PATH_INFO'] if route = self.class.static_route_for(r.request_method, r.path_info) catch(:halt){r.static_route(&route)} else super end end