ruby-changes:62433
From: Hiroshi <ko1@a...>
Date: Thu, 30 Jul 2020 21:22:03 +0900 (JST)
Subject: [ruby-changes:62433] 2bd1f827f1 (master): Promote io-nonblock to the default gems.
https://git.ruby-lang.org/ruby.git/commit/?id=2bd1f827f1 From 2bd1f827f14e06575e128a5e4928cee79592e61b Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@r...> Date: Thu, 30 Jul 2020 21:21:08 +0900 Subject: Promote io-nonblock to the default gems. diff --git a/doc/maintainers.rdoc b/doc/maintainers.rdoc index 0eebb45..c76df3b 100644 --- a/doc/maintainers.rdoc +++ b/doc/maintainers.rdoc @@ -92,8 +92,6 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L92 Akinori MUSHA (knu) [ext/fiber] Koichi Sasada (ko1) -[ext/io/nonblock] - Nobuyuki Nakada (nobu) [ext/monitor] Koichi Sasada (ko1) [ext/nkf] @@ -307,6 +305,9 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L305 Nobuyuki Nakada (nobu) https://github.com/ruby/io-console https://rubygems.org/gems/io-console +[ext/io/nonblock] + Nobuyuki Nakada (nobu) + https://github.com/ruby/io-nonblock [ext/io/wait] Nobuyuki Nakada (nobu) https://github.com/ruby/io-wait diff --git a/doc/standard_library.rdoc b/doc/standard_library.rdoc index fba8a29..e039cb1 100644 --- a/doc/standard_library.rdoc +++ b/doc/standard_library.rdoc @@ -34,7 +34,6 @@ un.rb:: Utilities to replace common UNIX commands https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L34 Coverage:: Provides coverage measurement for Ruby Digest:: Provides a framework for message digest libraries -IO:: Extensions for Ruby IO class, including #wait and ::console Monitor:: Provides an object or module to use safely by more than one thread NKF:: Ruby extension for Network Kanji Filter objspace:: Extends ObjectSpace module to add methods for internal statistics @@ -97,8 +96,7 @@ Etc:: Provides access to information typically stored in UNIX /etc directory https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L96 Fcntl:: Loads constants defined in the OS fcntl.h C header file Fiddle:: A libffi wrapper for Ruby GDBM:: Ruby extension for the GNU dbm (gdbm) library -IO::console:: Console interface -IO::wait:: +IO:: Extensions for Ruby IO class, including #wait, #nonblock and ::console JSON:: Implements Javascript Object Notation for Ruby OpenSSL:: Provides SSL, TLS and general purpose cryptography for Ruby Psych:: A YAML parser and emitter for Ruby diff --git a/ext/io/nonblock/io-nonblock.gemspec b/ext/io/nonblock/io-nonblock.gemspec new file mode 100644 index 0000000..e87fb73 --- /dev/null +++ b/ext/io/nonblock/io-nonblock.gemspec @@ -0,0 +1,22 @@ https://github.com/ruby/ruby/blob/trunk/ext/io/nonblock/io-nonblock.gemspec#L1 +Gem::Specification.new do |spec| + spec.name = "io-nonblock" + spec.version = "0.1.0" + spec.authors = ["Nobu Nakada"] + spec.email = ["nobu@r..."] + + spec.summary = %q{Enables non-blocking mode with IO class} + spec.description = %q{Enables non-blocking mode with IO class} + spec.homepage = "https://github.com/ruby/io-nonblock" + spec.license = ["Ruby", "BSD-2-Clause"] + spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") + + spec.metadata["homepage_uri"] = spec.homepage + spec.metadata["source_code_uri"] = spec.homepage + + spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do + `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + end + spec.bindir = "exe" + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.require_paths = ["lib"] +end diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index f0b9bd4..2b36265 100644 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -14,6 +14,7 @@ $repositories = { https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L14 fiddle: 'ruby/fiddle', stringio: 'ruby/stringio', "io-console": 'ruby/io-console', + "io-nonblock": 'ruby/io-nonblock', "io-wait": 'ruby/io-wait', csv: 'ruby/csv', webrick: 'ruby/webrick', @@ -135,6 +136,12 @@ def sync_default_gems(gem) https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L136 cp_r("#{upstream}/lib/io/console", "ext/io/console/lib") cp_r("#{upstream}/io-console.gemspec", "ext/io/console") `git checkout ext/io/console/depend` + when "io-nonblock" + rm_rf(%w[ext/io/nonblock test/io/nonblock]) + cp_r("#{upstream}/ext/io/nonblock", "ext/io") + cp_r("#{upstream}/test/io/nonblock", "test/io") + cp_r("#{upstream}/io-nonblock.gemspec", "ext/io/nonblock") + `git checkout ext/io/nonblock/depend` when "io-wait" rm_rf(%w[ext/io/wait test/io/wait]) cp_r("#{upstream}/ext/io/wait", "ext/io") -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/