aboutsummaryrefslogtreecommitdiffstats
path: root/lib/thwait
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-09-20 14:21:04 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-09-20 14:21:04 +0900
commit9d25c652a98f0a5bc552f81846c6dc975dc2f307 (patch)
tree7a85ba3a4e74eae340d03fa7c08d208baccb7b81 /lib/thwait
parent37c083942509dd7e0d8b7ccd3575936a2017c400 (diff)
downloadruby-9d25c652a98f0a5bc552f81846c6dc975dc2f307.tar.gz
Removed ThreadsWait from the ruby repository
Diffstat (limited to 'lib/thwait')
-rw-r--r--lib/thwait/thwait.gemspec26
-rw-r--r--lib/thwait/version.rb3
2 files changed, 0 insertions, 29 deletions
diff --git a/lib/thwait/thwait.gemspec b/lib/thwait/thwait.gemspec
deleted file mode 100644
index fc03942aba..0000000000
--- a/lib/thwait/thwait.gemspec
+++ /dev/null
@@ -1,26 +0,0 @@
-begin
- require_relative "lib/thwait/version"
-rescue LoadError
- # for Ruby core repository
- require_relative "version"
-end
-
-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
diff --git a/lib/thwait/version.rb b/lib/thwait/version.rb
deleted file mode 100644
index a3ffb3af16..0000000000
--- a/lib/thwait/version.rb
+++ /dev/null
@@ -1,3 +0,0 @@
-class ThreadsWait
- VERSION = "0.1.0"
-end