unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob 86c3cfadc888eef05c12f36b7593dd35b7f965fc 149 bytes (raw)
$ git show HEAD:t/env.ru	# shows this blob on the CLI

1
2
3
4
 
# frozen_string_literal: false
use Rack::ContentLength
use Rack::ContentType, "text/plain"
run lambda { |env| [ 200, {}, [ env.inspect << "\n" ] ] }

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