Closed edouard closed 1 year ago
As reported in #44 guard-bundler doesn't work with ruby 3.2. It fails with error:
guard-bundler
Guard::Bundler failed to achieve its <start>, exception was: > [#fb2815b9936d] NoMethodError: undefined method `exists?' for File:Class
This PR replaces File.exists? with File.exist?. File.exists? was deprecated in ruby 2.1.0 and was removed in ruby 3.2.0.
File.exists?
File.exist?
As reported in #44
guard-bundler
doesn't work with ruby 3.2. It fails with error:This PR replaces
File.exists?
withFile.exist?
.File.exists?
was deprecated in ruby 2.1.0 and was removed in ruby 3.2.0.