1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# frozen_string_literal: true
lib = File.expand_path("../../lib",__FILE__)
$LOAD_PATH.unshift(lib)
require "net/http/pipeline"
Gem::Specification.new do |spec|
spec.name = "net-http-pipeline"
spec.version = Net::HTTP::Pipeline::VERSION
spec.summary = "HTTP/1.1 pipelining implementation atop Net::HTTP"
spec.description = <<-DESC
This package contains an HTTP/1.1 pipelining implementation atop Net::HTTP.
A pipelined connection sends multiple requests to the HTTP server without
waiting for the responses. The server will respond in-order.
DESC
spec.author = "Eric Hodel"
spec.license = "Expat"
spec.email = "drbrain@segment7.net"
spec.homepage = "https://github.com/drbrain/net-http-pipeline"
spec.files = Dir["lib/**/*"] + Dir["test/**/*"] + Dir["sample/**/*"] + ["History.txt", "Manifest.txt", "README.txt"]
end
|