summaryrefslogblamecommitdiffhomepage
path: root/test/ruby/header_rack/config.ru
blob: 40f532496f7ea8f39c89e37aa36d2a78ea89dd3c (plain) (tree)
1
2
3
4
5
6
7
8







                                
app = Proc.new do |env|
    ['200', {
        'Content-Length' => '0',
        'rack.header' => 'hello'
    }, ['']]
end

run app