module Roda::RodaPlugins::EmptyRoot::RequestMethods

def root(&block)

the remaining path is +/+.
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_STRING && is_get?
    always(&block)
  end
end