KLayout / klayout

KLayout Main Sources
http://www.klayout.org
GNU General Public License v3.0
745 stars 192 forks source link

Replace "removed" Ruby method "file.exists?" with "file.exist?" #1711

Closed BWsix closed 1 month ago

BWsix commented 1 month ago

This PR replaces the only file.exists? method in the project with file.exist?.

file.exists? was deprecated and removed from Ruby version 3.2.0. I encountered this error when trying to open a DRC script with Ruby version 3.3.2 installed.

klayoutmatthias commented 1 month ago

Thanks for that PR. I did not notice File.exists? is deprecated.

Matthias