-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcapistrano-resque-pool.gemspec
More file actions
30 lines (25 loc) · 1.07 KB
/
capistrano-resque-pool.gemspec
File metadata and controls
30 lines (25 loc) · 1.07 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
# Maintain your gem's version:
require 'capistrano/resque/pool/version'
Gem::Specification.new do |spec|
spec.name = "capistrano-resque-pool"
spec.version = Capistrano::Resque::Pool::VERSION
spec.authors = ["Maxim Abramchuk", "Dmitry Zhlobo"]
spec.email = ["maximabramchuck@gmail.com"]
spec.summary = %q{Capistrano integration for Resque pool}
spec.description = %q{Capistrano integration for Resque pool}
spec.homepage = "https://github.com/datarockets/capistrano-resque-pool"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
%w(bundler rake).each do |dependency|
spec.add_development_dependency dependency
end
%w(capistrano resque-pool).each do |dependency|
spec.add_dependency dependency
end
end