From 2f2cd21c8f86021a295f67f45ac5b4b1f5c0b86f Mon Sep 17 00:00:00 2001 From: Justin Collins Date: Mon, 30 Dec 2024 18:50:45 -0700 Subject: [PATCH] Relax Prism version for --prism too --- lib/brakeman/options.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/brakeman/options.rb b/lib/brakeman/options.rb index cde0b522e..730bc8427 100644 --- a/lib/brakeman/options.rb +++ b/lib/brakeman/options.rb @@ -161,7 +161,7 @@ def create_option_parser options opts.on "--[no-]prism", "Use the Prism parser" do |use_prism| if use_prism - min_prism_version = '1.3.0' + min_prism_version = '1.0.0' begin gem 'prism', ">=#{min_prism_version}"