resque 1.25.0 → 1.25.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of resque might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0568ef91194e7fe5b71efa960750e1f0fb25affc
4
- data.tar.gz: bc88d2ee9520d46255e128b086dd703bfd4290b0
3
+ metadata.gz: c2b216a0c5baaf91a99defcfea743121e95944e6
4
+ data.tar.gz: d05a06e12d5fabc2f2dc248bb4b14807a98f9c30
5
5
  SHA512:
6
- metadata.gz: 421b102d2b47db2ab19b27378c45fd4e38b7fbff94c017026110457e7037f4895bf4fa30b199f5741bf49c3624d09b057d84a32b6f304edd2a2a36e9f0b164d0
7
- data.tar.gz: 35e0bf279e8fece76873e52c8d410c2076a9d145c7416d722d5d8ea065462bb7b9fbc831934fb590f56633514a9df677d73ffbe123fa5bb79cff274ecda09caf
6
+ metadata.gz: dbf20c331547549a10d6088da69923bf6ff1d06a4cd7562a50298131bdff982984ff6ce2732df0e28d6927b35e6cb82e69638bd4b189a9c0b7983121b5ced64e
7
+ data.tar.gz: 943655cc279c1d3acd5a154cdc0df8617ef7f82ccc048734f1ff17f1582dd1e2a95b47382f7a0d2d48af327f5c501432cd8297175e99e773e4d19ac5737e20f4
data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.25.1 (2013-9-26)
2
+
3
+ * Actually require Forwardable from the standard library.
4
+
1
5
  ## 1.25.0 (TBD)
2
6
  * Updates fork method so [resque-multi-job-forks](https://github.com/stulentsev/resque-multi-job-forks)
3
7
  monkey patching works again. See discussion at https://github.com/defunkt/resque/pull/895 for more
@@ -1,5 +1,6 @@
1
1
  require 'mono_logger'
2
2
  require 'redis/namespace'
3
+ require 'forwardable'
3
4
 
4
5
  require 'resque/version'
5
6
 
@@ -48,7 +49,7 @@ module Resque
48
49
  end
49
50
  end
50
51
 
51
- extend Forwardable
52
+ extend ::Forwardable
52
53
 
53
54
  def self.config=(options = {})
54
55
  @config = Config.new(options)
@@ -1,3 +1,3 @@
1
1
  module Resque
2
- Version = VERSION = '1.25.0'
2
+ Version = VERSION = '1.25.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resque
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.25.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Wanstrath
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-09-16 00:00:00.000000000 Z
13
+ date: 2013-09-26 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: redis-namespace