You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading to Ruby 3.2, we had the following error pop up in Sentry:
NoMethodError: undefinedmethod`exists?' for File:Class (NoMethodError) File.delete(ssl_filename) if File.exists?(ssl_filename) ^^^^^^^^Did you mean? exist? from rubycas-client (2.3.9) lib/casclient/tickets/storage.rb:129:in `cleanup_service_session_lookup'
After upgrading to Ruby 3.2, we had the following error pop up in Sentry:
According to Ruby 3.2's changelogs,
File.exists
has been removed:There are two references to
File.exists?
in the codebase, which need to be updated toFile.exist?
rubycas-client/lib/casclient/tickets/storage.rb
Lines 116 to 129 in 7b67c8f
The text was updated successfully, but these errors were encountered: