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

1
2
3
4
5
 
# frozen_string_literal: false
use Rack::ContentLength
use Rack::ContentType, "text/plain"
names = Unicorn.listener_names.inspect # rely on preload_app=true
run(lambda { |_| [ 200, {}, [ names ] ] })

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