class Sinatra::Default

def stop(*args, &block)

Deprecated. Use: halt
def stop(*args, &block)
  sinatra_warn "The 'stop' method is deprecated; use 'halt' instead."
  halt(*args, &block)
end