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
This commit is contained in:
hsbt 2018-07-25 12:15:45 +00:00
parent 2b80b8bcec
commit bbb5dbe8ee
3 changed files with 31 additions and 1 deletions

21
lib/thwait.gemspec Normal file
View File

@ -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

3
lib/thwait/version.rb Normal file
View File

@ -0,0 +1,3 @@
class ThreadsWait
VERSION = "0.1.0"
end

View File

@ -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`