module Roda::RodaPlugins::MatchHookArgs::RequestMethods

def always

Call the match hook with nil matchers and blocks before yielding to the block
def always
  scope._match_hook_args(nil, nil)
  super
end

def if_match(v)

Call the match hook with matchers and block args if yielding to the block before yielding to the block.
def if_match(v)
  super do |*a|
    scope._match_hook_args(v, a)
    yield(*a)
  end
end