module Roda::RodaPlugins::EmptyRoot::RequestMethods
def root(&block)
in addition to the default behavior of matching when
Match when the remaining path is the empty string,
def root(&block) super if remaining_path.empty? && is_get? always(&block) end end