activejob-retry 0.4.0 → 0.4.1
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 -2
- data/Gemfile.lock +1 -1
- data/lib/active_job/retry/version.rb +1 -1
- data/lib/activejob/retry.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4754f9d8dd24402b36af737064fb7cf2aa18f8bc
|
|
4
|
+
data.tar.gz: 8eee87bdab72957f4d6b3f89ce94f7626c9ec1c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 143fd664736af53579dc7f63c3d59b8ad661d6cf209d58d1cb8158c44b4350298944daa8f1f4b2cbad6db7f84f52d80cd97ff76cb2b19125f38fd6404ad08b5a
|
|
7
|
+
data.tar.gz: 925bce50297ad6b543769ad7f2257c89ef84ad02012cd70ca7eb59f447d1737ce73bcc45ff48e95be7b9879b20076b644b2476ad918795ba33545d286ca1d6fb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
|
+
## 0.4.0 - January 16, 2015
|
|
2
|
+
|
|
3
|
+
- Blacklist problematic adapters rather than whitelisting known good ones (patch by [@isaacseymour](https://github.com/isaacseymour))
|
|
4
|
+
|
|
1
5
|
## 0.3.1 - January 6, 2015
|
|
2
6
|
|
|
3
7
|
- Internal code tidy up
|
|
4
8
|
|
|
5
9
|
## 0.3.0 - January 6, 2015
|
|
6
10
|
|
|
7
|
-
- `rescue_from` gets called only when all retries have failed, rather than before attempting to retry (patch by [@isaacseymour](https://github.com/isaacseymour)
|
|
11
|
+
- `rescue_from` gets called only when all retries have failed, rather than before attempting to retry (patch by [@isaacseymour](https://github.com/isaacseymour))
|
|
8
12
|
|
|
9
13
|
## 0.2.0 - January 1, 2015
|
|
10
14
|
|
|
11
|
-
- Renamed retry_exceptions to retryable_exceptions (patch by [@greysteil](https://github.com/greysteil)
|
|
15
|
+
- Renamed retry_exceptions to retryable_exceptions (patch by [@greysteil](https://github.com/greysteil))
|
|
12
16
|
|
|
13
17
|
## 0.1.1 - January 1, 2015
|
|
14
18
|
|
data/Gemfile.lock
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'active_job/retry'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activejob-retry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Isaac Seymour
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activejob
|
|
@@ -129,6 +129,7 @@ files:
|
|
|
129
129
|
- lib/active_job/retry/variable_backoff_strategy.rb
|
|
130
130
|
- lib/active_job/retry/variable_options_validator.rb
|
|
131
131
|
- lib/active_job/retry/version.rb
|
|
132
|
+
- lib/activejob/retry.rb
|
|
132
133
|
- spec/retry/constant_backoff_strategy_spec.rb
|
|
133
134
|
- spec/retry/constant_options_validator_spec.rb
|
|
134
135
|
- spec/retry/variable_backoff_strategy_spec.rb
|