forked from Gropher/insque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsque.gemspec
19 lines (16 loc) · 879 Bytes
/
insque.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/insque/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["gropher"]
gem.email = ["[email protected]"]
gem.description = "Instant queue. Background processing and message driven communication tool. Faster and simplier alternative to Resque."
gem.summary = "Instant queue. Background processing and message driven communication tool. Faster and simplier alternative to Resque."
gem.homepage = "https://github.com/Gropher/Insque"
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.name = "insque"
gem.require_paths = ["lib"]
gem.version = Insque::VERSION
gem.add_dependency('redis', '>= 2.2.2' )
end