module Roda::RodaPlugins::BacktrackingArray::RequestMethods

def match(v, rest = nil)

otherwise, just match the single argument.
When matching an array, include the remaining arguments,
def match(v, rest = nil)
  if v.is_a?(Array)
    _match_array(v, rest)
  else
    super(v)
  end
end