module Roda::RodaPlugins::SymbolMatchers::RequestMethods
def _match_symbol_regexp(s)
Allow for symbol specific regexps, by using match_symbol_#{s} if
def _match_symbol_regexp(s) meth = :"match_symbol_#{s}" if respond_to?(meth) send(meth) else super end end