module Roda::RodaPlugins::ParamMatchers::RequestMethods

def match_params!(keys)

Adds all matches to the captures.
Match all given parameters if present and not empty.
def match_params!(keys)
  keys.each do |key|
    return false unless match_param!(key)
  end
end