module Roda::RodaPlugins::RunRequireSlash::RequestMethods

def run(*)

starts with a slash.
Calls the given rack app only if the remaining patch is empty or
def run(*)
  if @remaining_path.empty? || @remaining_path.start_with?('/')
    super
  end
end