forked from lantins/resque-lock-timeout
-
Notifications
You must be signed in to change notification settings - Fork 4
/
resque-lock-timeout.gemspec
34 lines (28 loc) · 1.19 KB
/
resque-lock-timeout.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
Gem::Specification.new do |s|
s.name = "ibotta-resque-lock-timeout"
s.version = "0.5.1"
s.date = Time.now.strftime("%Y-%m-%d")
s.summary = "A Resque plugin adding locking, with optional timeout/deadlock handling to resque jobs."
s.license = "MIT"
s.homepage = "http://github.com/Ibotta/resque-lock-timeout"
s.email = "[email protected]"
s.authors = ["Ibotta", "Luke Antins", "Ryan Carver", "Chris Wanstrath"]
s.files = %w[README.md Rakefile LICENSE HISTORY.md]
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")
s.add_dependency("resque", "~> 1.23")
s.add_dependency("redis", ">= 3.3", "< 5")
s.add_development_dependency("rake")
s.add_development_dependency("minitest")
s.add_development_dependency("yard")
s.add_development_dependency("simplecov")
s.add_development_dependency("debug")
s.description = <<-DESC
A Resque plugin. Adds locking, with optional timeout/deadlock handling to
resque jobs.
Using a `lock_timeout` allows you to re-acquire the lock should your worker
fail, crash, or is otherwise unable to relase the lock.
i.e. Your server unexpectedly loses power. Very handy for jobs that are
recurring or may be retried.
DESC
end