module Roda::RodaPlugins::CustomMatchers::RequestMethods

def unsupported_matcher(matcher)

Try custom matchers before calling super
def unsupported_matcher(matcher)
  roda_class.opts[:custom_matchers].each do |match_class, meth|
    if match_class === matcher
      return send(meth, matcher)
    end
  end
  super
end