ruby-posix-spawn 0.3.8-1 source package in Ubuntu

Changelog

ruby-posix-spawn (0.3.8-1) unstable; urgency=medium


  [ Cédric Boutillier ]
  * debian/control: remove obsolete DM-Upload-Allowed flag
  * use canonical URI in Vcs-* fields
  * debian/copyright: use DEP5 copyright-format/1.0 official
    URL for Format field

  [ Youhei SASAKI ]
  * Imported Upstream version 0.3.8
  * Bump Standard Version: 3.9.4

 -- Youhei SASAKI <email address hidden>  Mon, 16 Dec 2013 00:02:53 +0900

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe ruby

Downloads

File Size SHA-256 Checksum
ruby-posix-spawn_0.3.8-1.dsc 2.0 KiB bfb0c0751b600e64866c48b72cb32e862f1830c97a20f10186290aaa39838a21
ruby-posix-spawn_0.3.8.orig.tar.gz 23.6 KiB 2bad25e4a0a6419e3adb9de22075a5ac10b51eba2568176f4c2b87df5c12df1b
ruby-posix-spawn_0.3.8-1.debian.tar.gz 3.0 KiB 0710a06956664e1898196f4549820298176f57dbc9f947e8cc8b6f63a501fd8e

Available diffs

No changes file available.

Binary packages built by this source

ruby-posix-spawn: Ruby Implementation of posix_spawn(2) for faster process spawning

 The posix-spawn library aims to implement a subset of the Ruby 1.9
 `Process::spawn` interface in a way that takes advantage of fast
 process spawning interfaces when available and provides sane fallbacks
 on systems that do not.
 .
 `fork(2)` calls slow down as the parent process uses more memory due to
 the need to copy page tables. In many common uses of fork(), where it
 is followed by one of the exec family of functions to spawn child
 processes (`Kernel#system`,`IO::popen`, `Process::spawn`, etc.), it's
 possible to remove this overhead by using the use of special process
 spawning interfaces (`posix_spawn()`, `vfork()`, etc.)