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