From 8edb40f6e82994059c25917a193bf317897ec4d0 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Sun, 19 Oct 2025 19:18:28 +0900 Subject: [PATCH 1/2] Change upstream repository of rubygems --- tool/sync_default_gems.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index b4bd761a729078..55e8492851d363 100755 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -43,7 +43,7 @@ module SyncDefaultGems prism: ["ruby/prism", "main"], psych: 'ruby/psych', resolv: "ruby/resolv", - rubygems: 'rubygems/rubygems', + rubygems: 'ruby/rubygems', securerandom: "ruby/securerandom", shellwords: "ruby/shellwords", singleton: "ruby/singleton", From 2f20dc5dc5806cf1a836420e0216b814d0c6252a Mon Sep 17 00:00:00 2001 From: TaoufikMejri Date: Sun, 12 Oct 2025 19:55:07 +0100 Subject: [PATCH 2/2] [DOC] Improve loop code example documentation --- kernel.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel.rb b/kernel.rb index 5d596c889258c9..dc5cea1515df9a 100644 --- a/kernel.rb +++ b/kernel.rb @@ -141,6 +141,7 @@ def then # loop do # print "Input: " # line = gets + # # break if q, Q is entered or EOF signal (Ctrl-D on Unix, Ctrl-Z on windows) is sent # break if !line or line =~ /^q/i # # ... # end