ruby-retryable 2.0.4-1 source package in Ubuntu

Changelog

ruby-retryable (2.0.4-1) unstable; urgency=medium

  [ Cédric Boutillier ]
  * Bump debhelper compatibility level to 9
  * Use https:// in Vcs-* fields
  * Bump Standards-Version to 3.9.7 (no changes needed)
  * Use new default gem2deb Rakefile to run the tests

  [ Hleb Valoshka ]
  * Add patch to fix testsuite failure on deb-ci
  * Remove not required debian/lintian-overrides
  * Imported Upstream version 2.0.4
  * Bump Standards-Version to 3.9.8 (no changes)
  * Update authors mails in debian/copyright

  [ Lucas Kanashiro ]
  * debian/docs: ship README.md
  * Update short description, silence lintian

 -- Hleb Valoshka <email address hidden>  Fri, 05 Aug 2016 18:50:39 +0300

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
Focal release universe misc
Bionic release universe misc

Builds

Yakkety: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-retryable_2.0.4-1.dsc 2.0 KiB 46788199de2b2c53b8badfc799c343a2cc87cadead7ae0f8dbe210cefe44d382
ruby-retryable_2.0.4.orig.tar.gz 6.8 KiB c1dcc09f4daf7a8128d117d72a472d14af57e6545c122df3e94d65109b320ffa
ruby-retryable_2.0.4-1.debian.tar.xz 2.8 KiB 995114fd4e94da272356b70f3ac5af0fbfa4754852c50499e22249ac1ea8d551

Available diffs

No changes file available.

Binary packages built by this source

ruby-retryable: module that allows one to retry a code block

 Runs a code block, and retries it when an exception occurs. It's great when
 working with flakey webservices (for example).
 .
 It's configured using four optional parameters :tries, :on, :sleep, :matching,
 :ensure, :exception_cb and runs the passed block. Should an exception occur,
 it'll retry for (n-1) times.
 .
 Should the number of retries be reached without success, the last exception
 will be raised.