From cdaae38f79345bfb4604c98f915c6e12593b6a57 Mon Sep 17 00:00:00 2001 From: aycabta Date: Wed, 22 Jan 2020 13:44:41 +0900 Subject: Use gem name to specify --- tool/sync_default_gems.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tool') diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index 38117602ac..7044f1e21c 100644 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -62,7 +62,7 @@ $repositories = { 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 = { 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) 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) 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 v1.2.3