summaryrefslogtreecommitdiffhomepage
path: root/test/ruby/header_status/config.ru
blob: 29f038c296787b853e574a57d9a44de71709b9f5 (plain) (blame)
1
2
3
4
5
6
7
8
app = Proc.new do |env|
    ['200', {
        'Content-Length' => '0',
        'Status' => '200'
    }, []]
end

run app