From c1e8668138161905df7262981469b85e41afb914 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 29 Apr 2024 21:31:00 +0900 Subject: [PATCH] Workaround for incompatibilities between Prism 0.24.0 and 0.25.0 This is a workaround for incompatibilities between Prism 0.24.0 and 0.25.0. To upgrade to Prism 0.25+, it is necessary to investigate the following build error and provide feedback to Prism. --- Gemfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 9e083d748..f9c788a0e 100644 --- a/Gemfile +++ b/Gemfile @@ -11,7 +11,10 @@ gemspec gem 'bump', require: false gem 'bundler', '>= 1.15.0', '< 3.0' gem 'oedipus_lex', '>= 2.6.0', require: false -gem 'prism', '>= 0.24.0' +# FIXME: This is a workaround for incompatibilities between Prism 0.24.0 and 0.25.0. +# To upgrade to Prism 0.25+, it is necessary to investigate the following build error +# and provide feedback to Prism. +gem 'prism', '0.24.0' gem 'racc' gem 'rake', '~> 13.0' gem 'rspec', '~> 3.7'