module Roda::RodaPlugins::RunRequireSlash::RequestMethods
Public Instance Methods
Source
# File lib/roda/plugins/run_require_slash.rb, line 36 def run(*) if @remaining_path.empty? || @remaining_path.start_with?('/') super end end
Calls the given rack app only if the remaining patch is empty or starts with a slash.
Calls superclass method