module Roda::RodaPlugins::MultiRun::RequestMethods

def multi_run

dispatch the request to the stored rack application.
If one of the stored route prefixes match the current request,
def multi_run
  on self.class.multi_run_regexp do |prefix|
    yield prefix if defined?(yield)
    run scope.class.multi_run_apps[prefix]
  end
end