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

run app