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

run app