cane checks currently fail on Ruby 3 because of this call to File.exists?:
|
def exists?(path) |
|
::File.exists?(path) |
|
end |
This now gives a NoMethodError and suggests File.exist?.
Typical Ruby to delete the method with the correct grammar, if you ask me. :(
cane checks currently fail on Ruby 3 because of this call to
File.exists?:cane/lib/cane/file.rb
Lines 21 to 23 in c8d6ce4
This now gives a
NoMethodErrorand suggestsFile.exist?.Typical Ruby to delete the method with the correct grammar, if you ask me. :(