resque 1.9.3 → 1.9.4

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.

data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.9.4 (2010-06-14)
2
+
3
+ * Bugfix: Multiple failure backend gets exception information when created
4
+
1
5
  ## 1.9.3 (2010-06-14)
2
6
 
3
7
  * Bugfix: Resque#queues always returns an array
@@ -14,8 +14,10 @@ module Resque
14
14
  end
15
15
 
16
16
  def initialize(*args)
17
+ super
17
18
  @backends = self.class.classes.map {|klass| klass.new(*args)}
18
19
  end
20
+
19
21
  def save
20
22
  @backends.each(&:save)
21
23
  end
@@ -1,3 +1,3 @@
1
1
  module Resque
2
- Version = VERSION = '1.9.3'
2
+ Version = VERSION = '1.9.4'
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 9
8
- - 3
9
- version: 1.9.3
8
+ - 4
9
+ version: 1.9.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Chris Wanstrath