~ubuntu-branches/ubuntu/wily/ruby-retryable/wily-proposed

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Package Import Robot
  • Author(s): Hleb Valoshka
  • Date: 2015-06-22 16:22:37 UTC
  • Revision ID: package-import@ubuntu.com-20150622162237-1pqut60dcvp6m2qc
Tags: 2.0.1-1
Initial release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Source: ruby-retryable
 
2
Section: ruby
 
3
Priority: optional
 
4
Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
 
5
Uploaders: Hleb Valoshka <375gnu@gmail.com>
 
6
Build-Depends: debhelper (>= 7.0.50~),
 
7
               gem2deb,
 
8
               rake,
 
9
               ruby-rspec (>= 3.1)
 
10
Standards-Version: 3.9.6
 
11
Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-retryable.git
 
12
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/ruby-retryable.git
 
13
Homepage: http://github.com/nfedyashev/retryable
 
14
Testsuite: autopkgtest-pkg-ruby
 
15
XS-Ruby-Versions: all
 
16
 
 
17
Package: ruby-retryable
 
18
Architecture: all
 
19
XB-Ruby-Versions: ${ruby:Versions}
 
20
Depends: ruby | ruby-interpreter,
 
21
         ${misc:Depends},
 
22
         ${shlibs:Depends}
 
23
Description: Retryable#retryable, allows for retrying of code blocks.
 
24
 Runs a code block, and retries it when an exception occurs. It's great when
 
25
 working with flakey webservices (for example).
 
26
 .
 
27
 It's configured using four optional parameters :tries, :on, :sleep, :matching,
 
28
 :ensure, :exception_cb and runs the passed block. Should an exception occur,
 
29
 it'll retry for (n-1) times.
 
30
 .
 
31
 Should the number of retries be reached without success, the last exception
 
32
 will be raised.