5 def initialize(options
={})
7 @logger = options
[:logger]
11 @logger.info
@env['REQUEST_URI']
12 status
, headers
, body
= run(@env['REQUEST_URI'])
14 'Content-Type' => 'text/html',
15 'Content-Length' => body
.size
.to_s
17 [status
, headers
, body
]