forked from resque/resque-loner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resque-loner.gemspec
59 lines (49 loc) · 1.36 KB
/
resque-loner.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'resque-loner/version'
Gem::Specification.new do |s|
s.name = 'resque-loner'
s.version = Resque::Plugins::Loner::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Jannis Hermanns']
s.email = ['jannis@moviepilot.com']
s.homepage = 'http://github.com/jayniz/resque-loner'
s.summary = 'Adds unique jobs to resque'
s.has_rdoc = false
s.license = 'MIT'
s.rubyforge_project = 'resque-loner'
s.add_dependency 'resque', '~>1.0'
%w(
airbrake
i18n
mocha
mock_redis
rack-test
rake
rspec
rubocop
simplecov
yajl-ruby
).each do |gemname|
s.add_development_dependency gemname
end
s.executables = `git ls-files -z -- bin/*`.split("\0").map do
|f| File.basename(f)
end
s.files = `git ls-files -z`.split("\0")
s.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\0")
s.require_paths = ['lib']
s.description = <<-EODESC.gsub(/^ {4}/, '')
Makes sure that for special jobs, there can be only one job with the same
workload in one queue.
Example:
class CacheSweeper
include Resque::Plugins::UniqueJob
@queue = :cache_sweeps
def self.perform(article_id)
# Cache Me If You Can...
end
end
EODESC
end