module Roda::RodaPlugins::CustomMatchers::RequestMethods
Private Instance Methods
Source
# File lib/roda/plugins/custom_matchers.rb, line 74 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
Try custom matchers before calling super
Calls superclass method