ruby-slow-enumerator-tools 1.1.0-1.1 source package in Ubuntu

Changelog

ruby-slow-enumerator-tools (1.1.0-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Sun, 17 Jan 2021 15:20:44 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-slow-enumerator-tools_1.1.0-1.1.dsc 2.2 KiB fc8de107d66c142ed7d984be6c6b06006f2e2f58d4f8638cda0c029486b435db
ruby-slow-enumerator-tools_1.1.0.orig.tar.gz 8.4 KiB 06727bc2cd13e2dd5cb58f3e63397ab4e4c999d3057c416065f0ed419647c336
ruby-slow-enumerator-tools_1.1.0-1.1.debian.tar.xz 2.4 KiB b121435926c9615d83b9319de6f04ef7f15d51632cd233a24cf33f3f29f08ddb

Available diffs

No changes file available.

Binary packages built by this source

ruby-slow-enumerator-tools: transformation of Ruby enumerators to produce data slowly and unpredictably

 This Ruby library provides tools for transforming Ruby enumerators that
 produce data slowly and unpredictably.
 .
   * SlowEnumeratorTools.merge: given a collection of enumerables, creates a
     new enumerator that yields elements from any of these enumerables as soon
     as they become available.
 .
   * SlowEnumeratorTools.batch: given an enumerable, creates a new enumerable
     that yields batches containing all elements currently available.
 .
   * SlowEnumeratorTools.buffer: given an enumerable and a number, will create
     a buffer of that number of elements and try to fill it up with as many
     elements from that enumerable, so that they can be yielded immediately.