9 lines
145 B
Ruby
9 lines
145 B
Ruby
app = Proc.new do |env|
|
|
body = env['rack.input'].read
|
|
['200', {
|
|
'Content-Length' => body.length.to_s
|
|
}, [body]]
|
|
end
|
|
|
|
run app
|