From b8a00a5f15841fa45431312939f2b1a3d57fb20e 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] Fix `sexp_processor` gem reference It's https://rubygems.org/gems/sexp_processor, not https://rubygems.org/gems/sexp --- 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 a33ea2306c..1fb0e27846 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