module Roda::RodaPlugins::NotAllowed::RequestMethods

def is(*args)

response in that case.
request method must not be allowed, so return a 405
since there was already a successful terminal match, the
that the verb calls inside the block did not match, and
verb calls inside the block, but the block returned, assume
Keep track of verb calls inside the block. If there are any
def is(*args)
  super(*args) do
    begin
      is_verbs = @_is_verbs = []
      ret = if args.empty?
        yield
      else
        yield(*captures)
      end
      unless is_verbs.empty?
        method_not_allowed(is_verbs.join(', '))
      end
      ret
    ensure
      @_is_verbs = nil
    end
  end
end