resque 1.3.0 → 1.3.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.

data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.3.1 (2010-01-11)
2
+
3
+ * Vegas bugfix: Don't error without a config
4
+
1
5
  ## 1.3.0 (2010-01-11)
2
6
 
3
7
  * Use Vegas for resque-web
@@ -12,7 +12,7 @@ require 'resque/server'
12
12
 
13
13
  Vegas::Runner.new(Resque::Server, 'resque-web', {
14
14
  :before_run => lambda {|v|
15
- path = (ENV['RESQUECONFIG'] || v.args.first).strip
16
- load path if path
15
+ path = (ENV['RESQUECONFIG'] || v.args.first)
16
+ load path.to_s.strip if path
17
17
  }
18
18
  })
@@ -1,3 +1,3 @@
1
1
  module Resque
2
- Version = '1.3.0'
2
+ Version = '1.3.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.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Wanstrath