module Roda::RodaPlugins::OptimizedMatching::RequestMethods
def _verb(args, &block)
Optimize the r.get/r.post method handling of a single string, String, Integer,
def _verb(args, &block) case args.length when 0 always(&block) when 1 _is1(args, &block) else if_match(args << TERM, &block) end end