module Roda::RodaPlugins::ParamsCapturing::RequestMethods

def _match_symbol(sym)

Add the symbol to the list of param capture names if param capturing.
def _match_symbol(sym)
  if pc = @_params_captures
    pc << sym.to_s
  end
  super
end