forked from staugaard/resque-multi-job-forks
-
Notifications
You must be signed in to change notification settings - Fork 33
/
resque-multi-job-forks.gemspec
24 lines (20 loc) · 1021 Bytes
/
resque-multi-job-forks.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "resque-multi-job-forks"
s.version = "0.5.7"
s.authors = ["Mick Staugaard", "Luke Antins", 'Sergio Tulentsev']
s.homepage = "https://github.com/stulentsev/resque-multi-job-forks"
s.summary = "Have your resque workers process more that one job"
s.description = "When your resque jobs are frequent and fast, the overhead of forking and running your after_fork might get too big."
# Depends on minor version, due to monkeypatches Resque::Worker internals.
s.add_runtime_dependency("resque", ">= 1.27.0", "< 2.7")
s.add_runtime_dependency("json")
s.add_development_dependency("test-unit")
s.add_development_dependency("bundler")
s.add_development_dependency("rake")
s.files = Dir["lib/**/*"]
s.test_files = Dir["test/**/*"]
s.require_paths = ["lib"]
end