summaryrefslogblamecommitdiffhomepage
path: root/test/ruby/errors_write_int/config.ru
blob: 55d6c9d30168a19f1a8eae2ad7f90467c8f5099c (plain) (tree)
1
2
3
4
5
6





                                            
app = Proc.new do |env|
    env['rack.errors'].write(1234567890)
    ['200', {'Content-Length' => '0'}, ['']]
end

run app