summaryrefslogblamecommitdiffhomepage
path: root/test/ruby/encoding/config.ru
blob: 60bf0efaff89e4834a9cbadd591b552e067b447b (plain) (tree)
1
2
3
4
5
6
7
8







                                                  
app = Proc.new do |env|
    ['200', {
        'Content-Length' => '0',
        'X-Enc' => Encoding.default_external.to_s,
    }, ['']]
end

run app