module Roda::RodaPlugins::Base::RequestMethods
def get(*args, &block)
requests, otherwise, matches only GET requests where the arguments
Match GET requests. If no arguments are provided, matches all GET
def get(*args, &block) _verb(args, &block) if is_get? end