exponential-backoff 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -5
- data/exponential-backoff.gemspec +5 -1
- data/lib/exponential_backoff/version.rb +1 -1
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52bf9ffe80426b8bbf49a67f2f62ce341cfeca85276879977b20ac74b9c95fcb
|
|
4
|
+
data.tar.gz: 16d33591b1f350cd8510e72b269e2112387954268b5af48a4e23191b77c2dc19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3085e77c4b2ab5ce7db158c597f94c3d3a3b4c56d00f12ce99e780fdfcb3b5572d9088dbbdefcf42c8b3e4c6716543c62bee4968cc7be5829aa104b602c89bf6
|
|
7
|
+
data.tar.gz: 98f7468a9eb671e94e33fa33d7fd6d1cbee11fd47186631316acdc8190ac478aeb7ec34cf46c16acf9087c74cc14367233a1c7d9582fa0e3ceb104c91dd5bdbd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
0.0.4
|
|
2
|
+
|
|
3
|
+
- Add Rubygems metadata describing soruce code, changelog and issue tracker location.
|
|
4
|
+
|
|
1
5
|
0.0.3
|
|
2
6
|
|
|
3
|
-
- Give bundler a chance to require this gem when listed in Gemfile
|
|
7
|
+
- Give bundler a chance to require this gem when listed in Gemfile.
|
|
4
8
|
|
|
5
9
|
0.0.2
|
|
6
10
|
|
|
@@ -10,3 +14,4 @@
|
|
|
10
14
|
0.0.1
|
|
11
15
|
|
|
12
16
|
- Initial version.
|
|
17
|
+
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Exponential Backoff
|
|
2
2
|
===================
|
|
3
3
|
|
|
4
|
-
[](http://travis-ci.org/pawelpacana/exponential-backoff)
|
|
5
5
|
|
|
6
6
|
Too lazy to make retries to external services in a fashion that providers recommend? Never heard of [exponential backoff](http://en.wikipedia.org/wiki/Exponential_backoff) technique? Now there is no excuse not to be nice.
|
|
7
7
|
|
|
@@ -130,7 +130,3 @@ Running tests
|
|
|
130
130
|
bundle exec rake test
|
|
131
131
|
|
|
132
132
|
|
|
133
|
-
Supported rubies
|
|
134
|
-
----------------
|
|
135
|
-
|
|
136
|
-
Targets all Rubies (including Rubinius and JRuby) provided it's at least 1.9 mode.
|
data/exponential-backoff.gemspec
CHANGED
|
@@ -5,7 +5,6 @@ Gem::Specification.new do |gem|
|
|
|
5
5
|
gem.authors = ["Paweł Pacana"]
|
|
6
6
|
gem.email = ["pawel.pacana@gmail.com"]
|
|
7
7
|
gem.summary = %q{Exponential backoff algorithm for better reconnect intervals.}
|
|
8
|
-
gem.homepage = ""
|
|
9
8
|
|
|
10
9
|
gem.files = `git ls-files`.split($\)
|
|
11
10
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
@@ -13,6 +12,11 @@ Gem::Specification.new do |gem|
|
|
|
13
12
|
gem.name = "exponential-backoff"
|
|
14
13
|
gem.require_paths = ["lib"]
|
|
15
14
|
gem.version = ExponentialBackoff::VERSION
|
|
15
|
+
gem.metadata = {
|
|
16
|
+
"changelog_uri" => "https://github.com/pawelpacana/exponential-backoff/blob/master/CHANGELOG.md",
|
|
17
|
+
"source_code_uri" => "https://github.com/pawelpacana/exponential-backoff",
|
|
18
|
+
"bug_tracker_uri" => "https://github.com/pawelpacana/exponential-backoff/issues",
|
|
19
|
+
}
|
|
16
20
|
|
|
17
21
|
gem.add_development_dependency 'rake'
|
|
18
22
|
gem.add_development_dependency 'test-unit'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exponential-backoff
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paweł Pacana
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-11-
|
|
11
|
+
date: 2019-11-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -57,9 +57,12 @@ files:
|
|
|
57
57
|
- lib/exponential_backoff.rb
|
|
58
58
|
- lib/exponential_backoff/version.rb
|
|
59
59
|
- test/exponential_backoff_test.rb
|
|
60
|
-
homepage:
|
|
60
|
+
homepage:
|
|
61
61
|
licenses: []
|
|
62
|
-
metadata:
|
|
62
|
+
metadata:
|
|
63
|
+
changelog_uri: https://github.com/pawelpacana/exponential-backoff/blob/master/CHANGELOG.md
|
|
64
|
+
source_code_uri: https://github.com/pawelpacana/exponential-backoff
|
|
65
|
+
bug_tracker_uri: https://github.com/pawelpacana/exponential-backoff/issues
|
|
63
66
|
post_install_message:
|
|
64
67
|
rdoc_options: []
|
|
65
68
|
require_paths:
|
|
@@ -75,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
78
|
- !ruby/object:Gem::Version
|
|
76
79
|
version: '0'
|
|
77
80
|
requirements: []
|
|
78
|
-
rubygems_version: 3.0.
|
|
81
|
+
rubygems_version: 3.0.6
|
|
79
82
|
signing_key:
|
|
80
83
|
specification_version: 4
|
|
81
84
|
summary: Exponential backoff algorithm for better reconnect intervals.
|