module Roda::RodaPlugins::Base::RequestMethods

def matched_path

The already matched part of the path, including the original SCRIPT_NAME.
def matched_path
  e = @env
  e["SCRIPT_NAME"] + e["PATH_INFO"].chomp(@remaining_path)
end