Sha256: d7ae2540ca0281f0bd422626337341365f25ef0ea564504a9acec09276dd956c
Contents?: true
Size: 308 Bytes
Versions: 135
Compression:
Stored size: 308 Bytes
Contents
use Rack::ContentLength use Rack::ContentType, "text/plain" run lambda { |env| # our File objects for stderr/stdout should always have #path # and be sync=true ok = $stderr.sync && $stdout.sync && String === $stderr.path && String === $stdout.path [ 200, {}, [ "#{ok}\n" ] ] }
Version data entries
135 entries across 135 versions & 12 rubygems