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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 62121fac94a24726a037706f645dde646c99d6c1
4
- data.tar.gz: 85be924cff39e2494302ba2789f08094418c3901
3
+ metadata.gz: 4754f9d8dd24402b36af737064fb7cf2aa18f8bc
4
+ data.tar.gz: 8eee87bdab72957f4d6b3f89ce94f7626c9ec1c7
5
5
  SHA512:
6
- metadata.gz: 6b522502d0e9ccb5b8302f81110273d757400238fb21b1708adf3ec65145313f9817f37c32a5ea7ee80b7e043405e03d4d4fb772c4226be957ecfcd37c467a24
7
- data.tar.gz: aeb5b20b8d3fe2bd56c8a5a81756ed8592f98df9a6e2fca8368fe41ce6ec1ca17c6caff31ad126a2d7f38977dcd2206e455e56a25ea5b1f76695d2896d2ac549
6
+ metadata.gz: 143fd664736af53579dc7f63c3d59b8ad661d6cf209d58d1cb8158c44b4350298944daa8f1f4b2cbad6db7f84f52d80cd97ff76cb2b19125f38fd6404ad08b5a
7
+ data.tar.gz: 925bce50297ad6b543769ad7f2257c89ef84ad02012cd70ca7eb59f447d1737ce73bcc45ff48e95be7b9879b20076b644b2476ad918795ba33545d286ca1d6fb
@@ -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
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activejob-retry (0.4.0)
4
+ activejob-retry (0.4.1)
5
5
  activejob (>= 4.2)
6
6
  activesupport (>= 4.2)
7
7
 
@@ -1,5 +1,5 @@
1
1
  module ActiveJob
2
2
  module Retry
3
- VERSION = '0.4.0'
3
+ VERSION = '0.4.1'
4
4
  end
5
5
  end
@@ -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.0
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-01-16 00:00:00.000000000 Z
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