module Roda::RodaPlugins::BacktrackingArray::RequestMethods
def match(v, rest = nil)
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
def match(v, rest = nil) if v.is_a?(Array) _match_array(v, rest) else super(v) end end