From bff7c6d9e9a423d4a7158b81658b3e77733b9be3 Mon Sep 17 00:00:00 2001 From: Steve Savio Date: Tue, 6 Jan 2026 10:34:44 +0300 Subject: [PATCH 1/2] [DOC] Fix minor typo on shareable procs section --- ractor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ractor.rb b/ractor.rb index 6679ad15886d88..ac04237fc6e4f1 100644 --- a/ractor.rb +++ b/ractor.rb @@ -653,7 +653,7 @@ def unmonitor port # in the Proc will be replaced with the value passed via the `self:` keyword, # or +nil+ if not given. # - # In a shareable Proc, access to any outer variables if prohibited. + # In a shareable Proc, access to any outer variables is prohibited. # # a = 42 # Ractor.shareable_proc{ p a } From 925d04108b8fff7dfa14ccd8ac19fd1522cc99c3 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 6 Jan 2026 15:16:40 +0900 Subject: [PATCH 2/2] Add `rake` target to run the bundled `rake` --- common.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common.mk b/common.mk index 08fee9119a1ef9..e2fd5c4b279f7e 100644 --- a/common.mk +++ b/common.mk @@ -1620,6 +1620,11 @@ test-syntax-suggest: check: $(DOT_WAIT) $(PREPARE_SYNTAX_SUGGEST) test-syntax-suggest +RAKER = $(XRUBY) -I$(srcdir)/gems/lib$(PATH_SEPARATOR)$(srcdir)/.bundle/lib \ + -rrubygems $(srcdir)/.bundle/bin/rake +rake: + $(RAKER) $(RAKE_OPTS) $(RAKE) + test-bundler-precheck: $(TEST_RUNNABLE)-test-bundler-precheck no-test-bundler-precheck: yes-test-bundler-precheck: main $(arch)-fake.rb