From 705765237e1421c683e62f3c26642f79a932bc53 Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Thu, 5 Mar 2026 09:20:43 -0500 Subject: [PATCH] chore: File.{exists? => exist?} in Rakefile For Ruby >=3.2 compat --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 63b905b..e6bc59d 100755 --- a/Rakefile +++ b/Rakefile @@ -21,7 +21,7 @@ task specs: :spec require 'rspec/core/rake_task' desc 'Run specifications' RSpec::Core::RakeTask.new do |spec| - spec.rspec_opts = %w(--options spec/spec.opts) if File.exists?('spec/spec.opts') + spec.rspec_opts = %w(--options spec/spec.opts) if File.exist?('spec/spec.opts') end desc "Run specs through RCov"