resque 1.9.8 → 1.9.9

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,9 @@
1
+ ## 1.9.9 (2010-07-26)
2
+
3
+ * Depend on redis-namespace 0.8.0
4
+ * Depend on json_pure instead of json (for JRuby compat)
5
+ * Bugfix: rails_env display in stats view
6
+
1
7
  ## 1.9.8 (2010-07-20)
2
8
 
3
9
  * Bugfix: Worker.all should never return nil
@@ -280,7 +280,7 @@ module Resque
280
280
  :working => working.size,
281
281
  :failed => Stat[:failed],
282
282
  :servers => [redis_id],
283
- :environment => defined?(RAILS_ENV) ? RAILS_ENV : (ENV['RACK_ENV'] || 'development')
283
+ :environment => ENV['RAILS_ENV'] || ENV['RACK_ENV'] || 'development'
284
284
  }
285
285
  end
286
286
 
@@ -1,3 +1,3 @@
1
1
  module Resque
2
- Version = VERSION = '1.9.8'
2
+ Version = VERSION = '1.9.9'
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 9
8
- - 8
9
- version: 1.9.8
8
+ - 9
9
+ version: 1.9.9
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-07-20 00:00:00 -07:00
17
+ date: 2010-07-26 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -26,9 +26,9 @@ dependencies:
26
26
  - !ruby/object:Gem::Version
27
27
  segments:
28
28
  - 0
29
- - 7
29
+ - 8
30
30
  - 0
31
- version: 0.7.0
31
+ version: 0.8.0
32
32
  type: :runtime
33
33
  version_requirements: *id001
34
34
  - !ruby/object:Gem::Dependency
@@ -60,17 +60,17 @@ dependencies:
60
60
  type: :runtime
61
61
  version_requirements: *id003
62
62
  - !ruby/object:Gem::Dependency
63
- name: json
63
+ name: json_pure
64
64
  prerelease: false
65
65
  requirement: &id004 !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ">="
67
+ - - ~>
68
68
  - !ruby/object:Gem::Version
69
69
  segments:
70
70
  - 1
71
- - 1
71
+ - 4
72
72
  - 0
73
- version: 1.1.0
73
+ version: 1.4.0
74
74
  type: :runtime
75
75
  version_requirements: *id004
76
76
  description: " Resque is a Redis-backed Ruby library for creating background jobs,\n placing those jobs on multiple queues, and processing them later.\n\n Background jobs can be any Ruby class or module that responds to\n perform. Your existing classes can easily be converted to background\n jobs or you can create new classes specifically to do work. Or, you\n can do both.\n\n Resque is heavily inspired by DelayedJob (which rocks) and is\n comprised of three parts:\n\n * A Ruby library for creating, querying, and processing jobs\n * A Rake task for starting a worker which processes jobs\n * A Sinatra app for monitoring queues, jobs, and workers.\n"