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

run app