summaryrefslogtreecommitdiffhomepage
path: root/test/ruby/errors_write/config.ru
blob: 47619d6b289a96b8b88d1421c8fad6478b1397c8 (plain) (blame)
1
2
3
4
5
6
app = Proc.new do |env|
    env['rack.errors'].write('Error in application')
    ['200', {'Content-Length' => '0'}, ['']]
end

run app