ruby-io-like 0.3.0-1.1 source package in Ubuntu

Changelog

ruby-io-like (0.3.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>  Tue, 29 Dec 2020 00:05:42 +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-io-like_0.3.0-1.1.dsc 2.0 KiB ecc186b810fd9dd07401b729ef7f0c2788b8087b46cf6dbbd963f9a778cf63d7
ruby-io-like_0.3.0.orig.tar.gz 28.6 KiB c02b93eed8cbe239ade6496012e71505e9f2dcad9558aa796923d1b00e0e3269
ruby-io-like_0.3.0-1.1.debian.tar.xz 2.7 KiB 7cc14e00673c02816251d554399b5f4f5ce69075ff9dc9eeefab69d2d563e76f

Available diffs

No changes file available.

Binary packages built by this source

ruby-io-like: Provides the functionality of an IO object to any class

 The IO::Like module provides the methods of an IO object based upon on a few
 simple methods provided by the including class: unbuffered_read,
 unbuffered_write, and unbuffered_seek.
 .
 These methods provide the underlying read, write, and seek support
 respectively, and only the method or methods necessary to the correct
 operation of the IO aspects of the including class need to be provided.
 .
 Missing functionality will cause the resulting object to appear read-only,
 write-only, and/or unseekable depending on which underlying methods are
 absent. Additionally, read and write operations which are buffered in IO are
 buffered with independently configurable buffer sizes.
 Duplexed objects (those with separate read and write streams)
 are also supported.