Using Ruby 3.2, when reading the RI documentation from the local file, there's a call to File.exists?(path) on line 51 in ./plugin/ri_vim.rb, which is no longer a valid method. Changing this to File.exist?(path) fixes the issue.
Update: I've had #36 open for a couple of years but it hasn't been merged, so if others are experiencing this issue, feel free to use my fork in the meantime.
Using Ruby 3.2, when reading the RI documentation from the local file, there's a call to
File.exists?(path)on line 51 in./plugin/ri_vim.rb, which is no longer a valid method. Changing this toFile.exist?(path)fixes the issue.Update: I've had #36 open for a couple of years but it hasn't been merged, so if others are experiencing this issue, feel free to use my fork in the meantime.