aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-25 12:15:45 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-25 12:15:45 +0000
commitbbb5dbe8ee0fca661e915d01b2927d05622b5918 (patch)
treec62110f2f8d73e03ec7670cede172b976200b0ea
parent2b80b8bcec2934a9d8b3a1b33f8e4b697af242c3 (diff)
downloadruby-bbb5dbe8ee0fca661e915d01b2927d05622b5918.tar.gz
Promote ThWait to Default gems.
* lib/thwait.gemspec: Added initial gemspec. * lib/thwait/version.rb: Added ThWait::VERSION for gemspec. * tool/sync_default_gems.rb: Support ThWait. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/thwait.gemspec21
-rw-r--r--lib/thwait/version.rb3
-rw-r--r--tool/sync_default_gems.rb8
3 files changed, 31 insertions, 1 deletions
diff --git a/lib/thwait.gemspec b/lib/thwait.gemspec
new file mode 100644
index 0000000000..9a0355f0b5
--- /dev/null
+++ b/lib/thwait.gemspec
@@ -0,0 +1,21 @@
+require_relative "thwait/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
diff --git a/lib/thwait/version.rb b/lib/thwait/version.rb
new file mode 100644
index 0000000000..a3ffb3af16
--- /dev/null
+++ b/lib/thwait/version.rb
@@ -0,0 +1,3 @@
+class ThreadsWait
+ VERSION = "0.1.0"
+end
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index ee2e60ab51..b48a2ed7ed 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -32,6 +32,7 @@
# * https://github.com/ruby/tracer
# * https://github.com/ruby/shell
# * https://github.com/ruby/forwardable
+# * https://github.com/ruby/thwait
#
$repositories = {
@@ -66,7 +67,8 @@ $repositories = {
sync: 'ruby/sync',
tracer: 'ruby/tracer',
shell: 'ruby/shell',
- forwardable: "ruby/forwardable"
+ forwardable: "ruby/forwardable",
+ thwait: "ruby/thwait"
}
def sync_default_gems(gem)
@@ -172,6 +174,10 @@ def sync_default_gems(gem)
`cp -rf ../fcntl/ext/fcntl ext`
`cp -f ../fcntl/fcntl.gemspec ext/fcntl`
`git checkout ext/fcntl/depend`
+ when "thwait"
+ `rm -rf lib/thwait*`
+ `cp -rf ../thwait/lib/* lib`
+ `cp -rf ../thwait/thwait.gemspec lib`
when "strscan"
`rm -rf ext/strscan test/strscan`
`cp -rf ../strscan/ext/strscan ext`