rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
blob ea9b0e35043c53168e0902caa83e23783439aa02 239 bytes (raw)
$ git show v5.1.0:t/simple-http_RevFiberSpawn.ru	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
use Rack::ContentLength
use Rack::ContentType
run lambda { |env|
  if env['rack.multithread'] == false &&
    env['rainbows.model'] == :RevFiberSpawn
    [ 200, {}, [ Thread.current.inspect << "\n" ] ]
  else
    raise env.inspect
  end
}

git clone https://yhbt.net/rainbows.git