From c7e67446a3054998893d64cbab150810d2a99aa5 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Wed, 21 Mar 2018 18:26:40 +0300 Subject: Tests: Ruby module. --- test/ruby/input_gets_all/config.ru | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/ruby/input_gets_all/config.ru (limited to 'test/ruby/input_gets_all') diff --git a/test/ruby/input_gets_all/config.ru b/test/ruby/input_gets_all/config.ru new file mode 100644 index 00000000..186b2418 --- /dev/null +++ b/test/ruby/input_gets_all/config.ru @@ -0,0 +1,14 @@ +app = Proc.new do |env| + body = '' + buf = '' + loop do + buf = env['rack.input'].gets + break if buf == nil + body += buf + end + ['200', { + 'Content-Length' => body.length.to_s + }, [body]] +end + +run app -- cgit