Module: Roda::RodaPlugins::ParamMatchers

Defined in:
lib/roda/plugins/param_matchers.rb

Overview

The param_matchers plugin adds hash matchers that operate on the request’s params.

It adds a :param matcher for matching on any param with the same name, yielding the value of the param.

r.on :param => 'foo' do |value|
  # Matches '?foo=bar', '?foo='
  # Doesn't match '?bar=foo'
end

It adds a :param! matcher for matching on any non-empty param with the same name, yielding the value of the param.

r.on(:param! => 'foo') do |value|
  # Matches '?foo=bar'
  # Doesn't match '?foo=', '?bar=foo'
end

Defined Under Namespace

Modules: RequestMethods