module Roda::RodaPlugins::SymbolMatchers::RequestMethods

def _match_symbol_regexp(s)

defined. If not defined, calls super for the default behavior.
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