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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
 
#\ -E none
# frozen_string_literal: false
use Rack::ContentLength
use Rack::ContentType, 'text/plain'
app = lambda do |env|
  case env['rack.input']
  when Unicorn::TeeInput
    [ 200, {}, %w(OK) ]
  else
    [ 500, {}, %w(NO) ]
  end
end
run app

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