-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy paththread.gemspec
22 lines (19 loc) · 897 Bytes
/
thread.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "thread"
spec.version = "0.2.2"
spec.authors = ["meh."]
spec.email = ["[email protected]"]
spec.summary = %q{Various extensions to the base thread library.}
spec.description = %q{Includes a thread pool, message passing capabilities, a recursive mutex, promise, future and delay.}
spec.homepage = "http://github.com/meh/ruby-thread"
spec.license = "WTFPL"
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"]
spec.add_development_dependency "rspec"
spec.add_development_dependency "rake"
end