From 490a03bad9d3c18f66ae004055145db34d8ba599 Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Sun, 14 Dec 2025 18:26:42 +0100 Subject: [PATCH 1/2] [ruby/prism] Fix `sexp_processor` gem reference It's https://rubygems.org/gems/sexp_processor, not https://rubygems.org/gems/sexp https://github.com/ruby/prism/commit/b8a00a5f15 --- lib/prism/translation/ruby_parser.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/prism/translation/ruby_parser.rb b/lib/prism/translation/ruby_parser.rb index a33ea2306c1967..1fb0e278462eeb 100644 --- a/lib/prism/translation/ruby_parser.rb +++ b/lib/prism/translation/ruby_parser.rb @@ -4,7 +4,7 @@ begin require "sexp" rescue LoadError - warn(%q{Error: Unable to load sexp. Add `gem "sexp"` to your Gemfile.}) + warn(%q{Error: Unable to load sexp. Add `gem "sexp_processor"` to your Gemfile.}) exit(1) end From e7cf07ba3e6758e3e6d34754422505c75fdf9c80 Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Sun, 14 Dec 2025 22:28:41 +0000 Subject: [PATCH 2/2] [DOC] Fix link in MakeMakefile --- lib/mkmf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 201732d274ebf4..38a5a15fb5fdd0 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -40,7 +40,7 @@ def quote end ## -# mkmf.rb is used by Ruby C extensions to generate a Makefile which will +# \Module \MakeMakefile is used by Ruby C extensions to generate a Makefile which will # correctly compile and link the C extension to Ruby and a third-party # library. module MakeMakefile