ruby-retryable 2.0.1-1 source package in Ubuntu

Changelog

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

  * Initial release.

 -- Hleb Valoshka <email address hidden>  Mon, 22 Jun 2015 16:22:37 +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
Xenial release universe misc

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-retryable_2.0.1-1.dsc 2.0 KiB 51523754fb346303915c3a3adf1dd048c1a560fa132a75cf1c6c7d61d2a491d0
ruby-retryable_2.0.1.orig.tar.gz 6.5 KiB e9054d4357082b3e8c6eb0e1346bb3b1d173d7582cda14c3e59a841ce9b1d634
ruby-retryable_2.0.1-1.debian.tar.xz 2.3 KiB 8d6f15888bc7cb142053c3ff2c0192a80cd4b21c73e6a8593020981299a57f4e

No changes file available.

Binary packages built by this source

ruby-retryable: Retryable#retryable, allows for retrying of code blocks.

 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.