Sha256: 6cfec73a60d2d27dce097942ff1f7070ac2ded76637977ad7d72b0608075e5ff
Contents?: true
Size: 219 Bytes
Versions: 143
Compression:
Stored size: 219 Bytes
Contents
#\ -E none use Rack::ContentLength use Rack::ContentType, 'text/plain' app = lambda do |env| case env['rack.input'] when Unicorn::StreamInput [ 200, {}, %w(OK) ] else [ 500, {}, %w(NO) ] end end run app
Version data entries
143 entries across 143 versions & 13 rubygems