Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
unicorn / test / benchmark / stack.ru
Size: Mime:
# frozen_string_literal: false
run(lambda { |env|
  body = "#{caller.size}\n"
  h = {
    "Content-Length" => body.size.to_s,
    "Content-Type" => "text/plain",
  }
  [ 200, h, [ body ] ]
})