resque 1.9.2 → 1.9.3

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.
data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.9.3 (2010-06-14)
2
+
3
+ * Bugfix: Resque#queues always returns an array
4
+
1
5
  ## 1.9.2 (2010-06-13)
2
6
 
3
7
  * Bugfix: Worker.all returning nil fix
@@ -160,7 +160,7 @@ module Resque
160
160
 
161
161
  # Returns an array of all known Resque queues as strings.
162
162
  def queues
163
- redis.smembers(:queues)
163
+ Array(redis.smembers(:queues))
164
164
  end
165
165
 
166
166
  # Given a queue name, completely deletes the queue.
@@ -1,3 +1,3 @@
1
1
  module Resque
2
- Version = VERSION = '1.9.2'
2
+ Version = VERSION = '1.9.3'
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 9
8
- - 2
9
- version: 1.9.2
8
+ - 3
9
+ version: 1.9.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Chris Wanstrath
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-06-13 00:00:00 +02:00
17
+ date: 2010-06-14 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency