Files
nginx-unit/test/ruby/input_gets_all/config.ru
2018-03-21 18:26:40 +03:00

15 lines
243 B
Ruby

app = Proc.new do |env|
body = ''
buf = ''
loop do
buf = env['rack.input'].gets
break if buf == nil
body += buf
end
['200', {
'Content-Length' => body.length.to_s
}, [body]]
end
run app