module Roda::RodaPlugins::OptimizedStringMatchers::RequestMethods

def is_exactly(s)

Optimized version of +is+ that only supports a single string.
def is_exactly(s)
  rp = @remaining_path
  if _match_string(s)
    if @remaining_path.empty?
      always{yield}
    else
      @remaining_path = rp
    end
  end
end