module Roda::RodaPlugins::ParamMatchers::RequestMethods

def match_param(key)

Adds match to the captures.
Match the given parameter if present, even if the parameter is empty.
def match_param(key)
  if v = params[key.to_s]
    @captures << v
  end
end