module Roda::RodaPlugins::ParamMatchers::RequestMethods
def match_params(keys)
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
def match_params(keys) keys.each do |key| return false unless match_param(key) end end