module Roda::RodaPlugins::ParamMatchers::RequestMethods

def match_params(keys)

Adds all matches to the captures.
Match all given parameters if present, even if any/all parameters is empty.
def match_params(keys)
  keys.each do |key|
    return false unless match_param(key)
  end
end