-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresque-requeue_worker.gemspec
26 lines (21 loc) · 1.02 KB
/
resque-requeue_worker.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$LOAD_PATH.unshift 'lib'
require 'resque/plugins/requeue_worker_version'
Gem::Specification.new do |s|
s.name = "resque-requeue_worker"
s.version = Resque::Plugins::RequeueWorker::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Resque plugin for requeueing jobs when worker is killed."
s.homepage = "http://github.com:alexchee/resque-requeueworker"
s.email = "[email protected]"
s.authors = [ "Alex Chee" ]
s.files = %w( README.markdown Rakefile VERSION LICENSE)
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")
s.files += Dir.glob("resque-requeue_worker.gemspec")
s.extra_rdoc_files = [ "LICENSE", "README.markdown" ]
s.rdoc_options = ["--charset=UTF-8"]
s.test_files = Dir.glob("test/**/*")
s.description = <<description
A plugin for Resque that hooks on to signals and recreates current job if it receives TERM, INT, KILL Signals.
description
end