resque-access_worker_from_job 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Small plugin allowing the +perform+ method of Resque jobs to access the worker running them via the cleverly-named +worker+ instance variable.
4
4
 
5
- Purpose: this allows jobs to access shared sockets in the parent worker.
5
+ Purpose: this allows jobs to access shared sockets in the parent worker, which I needed to implement a persistent TCP connection for {sending background iPhone messages via Apple's Push Notification Service}[http://github.com/kdonovan/apple_push_notification].
6
6
 
7
7
  As additional functionality, it can also abort a job gracefully if it's picked up by the wrong worker
8
8
  class, which is useful if you've subclassed Resque::Worker to add your own functionality and need to ensure
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -1 +1 @@
1
- require File.expane_path(File.dirname(__FILE__)) + "/resque/plugins/access_worker_from_job.rb"
1
+ require File.expand_path(File.dirname(__FILE__)) + "/resque/plugins/access_worker_from_job.rb"
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{resque-access_worker_from_job}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Kali Donovan"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resque-access_worker_from_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kali Donovan