ruby-net-http-persistent 3.1.0-2 source package in Ubuntu

Changelog

ruby-net-http-persistent (3.1.0-2) unstable; urgency=medium

  * Team upload

  [ Pirate Praveen ]
  * Refresh patches
  * Bundler now uses vendored copy of net-http-persistent (Closes: #951879)
  * Update Breaks: bundler to <= 2.1.4-1

  [ Samyak Jain ]
  * Upload to unstable

  [ Debian Janitor ]
  * debian/copyright: use spaces rather than tabs to start continuation
    lines.
  * Set field Upstream-Contact in debian/copyright.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).

 -- Pirate Praveen <email address hidden>  Fri, 19 Jun 2020 22:23:40 +0530

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
ruby
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe ruby
Lunar release universe ruby
Jammy release universe ruby

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-net-http-persistent_3.1.0-2.dsc 2.2 KiB b2b4391beb1569da91a1c3b9d9451b7e94d5198ba409d6b91dafd2feb15794cb
ruby-net-http-persistent_3.1.0.orig.tar.gz 26.2 KiB dc895f75dc4f01a8b7b68ed9e41ed2f768a79c971b95261a96f4e7afd5078c28
ruby-net-http-persistent_3.1.0-2.debian.tar.xz 3.8 KiB 20ed78b5d32e663d0616da7680169025ba736d3e1b5be7d4741544321f849959

Available diffs

No changes file available.

Binary packages built by this source

ruby-net-http-persistent: Manages persistent connections using Net::HTTP

 This package provides persistent connections to Net::HTTP.
 .
 Using persistent HTTP connections can dramatically increase the speed of HTTP.
 Creating a new HTTP connection for every request involves an extra TCP
 round-trip and causes TCP congestion avoidance negotiation to start over.
 .
 Net::HTTP supports persistent connections with some API methods but does not
 make setting up a single persistent connection or managing multiple
 connections easy. Net::HTTP::Persistent wraps Net::HTTP and allows you to
 focus on how to make HTTP requests.