forked from stulentsev/resque-multi-job-forks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresque-multi-job-forks.gemspec
More file actions
22 lines (18 loc) · 887 Bytes
/
Copy pathresque-multi-job-forks.gemspec
File metadata and controls
22 lines (18 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "resque-multi-job-forks"
s.version = "0.4.3"
s.authors = ["Mick Staugaard", "Luke Antins", 'Sergio Tulentsev']
s.email = ["mick@zendesk.com", "luke@lividpenguin.com", 'sergei.tulentsev@gmail.com']
s.homepage = "http://github.com/staugaard/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."
s.add_runtime_dependency("resque", "~> 1.22")
s.add_runtime_dependency("json")
s.add_development_dependency("rake")
s.add_development_dependency("bundler")
s.files = Dir["lib/**/*"]
s.test_files = Dir["test/**/*"]
s.require_paths = ["lib"]
end