summaryrefslogtreecommitdiff
path: root/lib/thwait/thwait.gemspec
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-31 12:12:33 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-31 12:12:33 +0000
commitb7d3d7719e77f37242e50c359a05d4cfa386d380 (patch)
tree798b7e326f9c985f0c1ff81872ee29ea2e3ab6c3 /lib/thwait/thwait.gemspec
parent7c980498925a0f0c92b62d4e917a79022df3f214 (diff)
Fixed inconsistency gemspec location.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/thwait/thwait.gemspec')
-rw-r--r--lib/thwait/thwait.gemspec21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/thwait/thwait.gemspec b/lib/thwait/thwait.gemspec
new file mode 100644
index 0000000000..036a22b99e
--- /dev/null
+++ b/lib/thwait/thwait.gemspec
@@ -0,0 +1,21 @@
+require_relative "version"
+
+Gem::Specification.new do |spec|
+ spec.name = "thwait"
+ spec.version = ThreadsWait::VERSION
+ spec.authors = ["Keiju ISHITSUKA"]
+ spec.email = ["keiju@ruby-lang.org"]
+
+ spec.summary = %q{Watches for termination of multiple threads.}
+ spec.description = %q{Watches for termination of multiple threads.}
+ spec.homepage = "https://github.com/ruby/thwait"
+ spec.license = "BSD-2-Clause"
+
+ spec.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/thwait.rb", "lib/thwait/version.rb", "thwait.gemspec"]
+ spec.bindir = "exe"
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.require_paths = ["lib"]
+
+ spec.add_development_dependency "bundler", "~> 1.16"
+ spec.add_development_dependency "rake", "~> 10.0"
+end