forked from 9z0b3t1c/capistrano-resque
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapistrano-resque.gemspec
More file actions
21 lines (18 loc) · 876 Bytes
/
capistrano-resque.gemspec
File metadata and controls
21 lines (18 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/capistrano-resque/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = "capistrano-resque"
gem.version = CapistranoResque::VERSION.dup
gem.author = "Steven Shingler"
gem.email = "shingler@gmail.com"
gem.homepage = "https://github.com/sshingler/capistrano-resque"
gem.summary = %q{Resque integration for Capistrano}
gem.description = %q{Capistrano plugin that integrates Resque server tasks.}
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
gem.require_paths = ["lib"]
gem.add_runtime_dependency "capistrano"
gem.add_runtime_dependency "resque"
gem.add_runtime_dependency "resque-scheduler"
end