[前][次][番号順一覧][スレッド一覧]

ruby-changes:59770

From: aycabta <ko1@a...>
Date: Wed, 22 Jan 2020 13:45:20 +0900 (JST)
Subject: [ruby-changes:59770] cdaae38f79 (master): Use gem name to specify

https://git.ruby-lang.org/ruby.git/commit/?id=cdaae38f79

From cdaae38f79345bfb4604c98f915c6e12593b6a57 Mon Sep 17 00:00:00 2001
From: aycabta <aycabta@g...>
Date: Wed, 22 Jan 2020 13:44:41 +0900
Subject: Use gem name to specify


diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index 3811760..7044f1e 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -62,7 +62,7 @@ $repositories = { https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L62
   fileutils: 'ruby/fileutils',
   fiddle: 'ruby/fiddle',
   stringio: 'ruby/stringio',
-  ioconsole: 'ruby/io-console',
+  "io-console": 'ruby/io-console',
   csv: 'ruby/csv',
   webrick: 'ruby/webrick',
   dbm: 'ruby/dbm',
@@ -89,11 +89,11 @@ $repositories = { https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L89
   pstore: "ruby/pstore",
   delegate: "ruby/delegate",
   benchmark: "ruby/benchmark",
-  netpop: "ruby/net-pop",
-  netsmtp: "ruby/net-smtp",
+  "net-pop": "ruby/net-pop",
+  "net-smtp": "ruby/net-smtp",
   cgi: "ruby/cgi",
   readline: "ruby/readline",
-  readlineext: "ruby/readline-ext",
+  "readline-ext": "ruby/readline-ext",
   observer: "ruby/observer",
   timeout: "ruby/timeout",
   yaml: "ruby/yaml",
@@ -166,7 +166,7 @@ def sync_default_gems(gem) https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L166
     cp_r("#{upstream}/test/stringio", "test")
     cp_r("#{upstream}/stringio.gemspec", "ext/stringio")
     `git checkout ext/stringio/depend ext/stringio/README.md`
-  when "ioconsole"
+  when "io-console"
     rm_rf(%w[ext/io/console test/io/console])
     cp_r("#{upstream}/ext/io/console", "ext/io")
     cp_r("#{upstream}/test/io/console", "test/io")
@@ -252,13 +252,13 @@ def sync_default_gems(gem) https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L252
     cp_r("#{upstream}/openssl.gemspec", "ext/openssl")
     cp_r("#{upstream}/HISTORY.md", "ext/openssl")
     `git checkout ext/openssl/depend`
-  when "netpop"
+  when "net-pop"
     sync_lib "net-pop"
     mv "lib/net-pop.gemspec", "lib/net/pop"
-  when "netsmtp"
+  when "net-smtp"
     sync_lib "net-smtp"
     mv "lib/net-smtp.gemspec", "lib/net/smtp"
-  when "readlineext"
+  when "readline-ext"
     sync_lib "readline-ext"
     mv "lib/readline-ext.gemspec", "ext/readline"
   when "did_you_mean"
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]