module Roda::RodaPlugins::MatchHook::ClassMethods

def match_hook(&block)

Add a match hook.
def match_hook(&block)
  meth = define_roda_method("match_hook", 0, &block)
  add_match_hook{|_,_| send(meth)}
  nil
end