1begin
2  require_relative "lib/thwait/version"
3rescue LoadError
4  # for Ruby core repository
5  require_relative "version"
6end
7
8Gem::Specification.new do |spec|
9  spec.name          = "thwait"
10  spec.version       = ThreadsWait::VERSION
11  spec.authors       = ["Keiju ISHITSUKA"]
12  spec.email         = ["keiju@ruby-lang.org"]
13
14  spec.summary       = %q{Watches for termination of multiple threads.}
15  spec.description   = %q{Watches for termination of multiple threads.}
16  spec.homepage      = "https://github.com/ruby/thwait"
17  spec.license       = "BSD-2-Clause"
18
19  spec.files         = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/thwait.rb", "lib/thwait/version.rb", "thwait.gemspec"]
20  spec.bindir        = "exe"
21  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22  spec.require_paths = ["lib"]
23
24  spec.add_development_dependency "bundler", "~> 1.16"
25  spec.add_development_dependency "rake", "~> 10.0"
26end
27