module Roda::RodaPlugins::Base::RequestMethods

def post(*args, &block)

given fully consume the path.
requests, otherwise, matches only POST requests where the arguments
Match POST requests. If no arguments are provided, matches all POST
def post(*args, &block)
  _verb(args, &block) if post?
end