module Roda::RodaPlugins::RunRequireSlash::RequestMethods
def run(*)
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
def run(*) if @remaining_path.empty? || @remaining_path.start_with?('/') super end end