When I start this simple server, I get an error: Server handler (thin) not found. (RuntimeError)
require 'async-rack'
require 'sinatra'
set :server, 'thin'
get '/' do
"Hello, world!"
end
If I comment out the require 'async-rack' line, it starts Thin fine. If I comment out the set :server, 'thin' and use async-rack, it starts WEBrick.