module Roda::RodaPlugins::Base::RequestMethods

def match_all(args)

Match only if all of the arguments in the given array match.
def match_all(args)
  args.all?{|arg| match(arg)}
end