-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathqs.gemspec
More file actions
29 lines (24 loc) · 1.13 KB
/
qs.gemspec
File metadata and controls
29 lines (24 loc) · 1.13 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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "qs/version"
Gem::Specification.new do |gem|
gem.name = "qs"
gem.version = Qs::VERSION
gem.authors = ["Kelly Redding", "Collin Redding"]
gem.email = ["kelly@kellyredding.com", "collin.redding@me.com"]
gem.summary = %q{Define message queues. Process jobs and events. Profit.}
gem.description = %q{Define message queues. Process jobs and events. Profit.}
gem.homepage = "http://github.com/redding/qs"
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency("assert", ["~> 2.16.3"])
gem.add_development_dependency("scmd", ["~> 3.0.3"])
gem.add_dependency("dat-worker-pool", ["~> 0.6.3"])
gem.add_dependency("hella-redis", ["~> 0.4.0"])
gem.add_dependency("much-plugin", ["~> 0.2.0"])
gem.add_dependency("much-timeout", ["~> 0.1.1"])
end