-
-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoMethodError File.exists? in ruby 3.2 #45
Comments
I just ran into this one, looks like it was fixed in 669a8f8 but it hasn't been published to rubygems I ended up just installing the gem from the repo to get the patched version (not ideal) but gem "html2slim", github: "slim-template/html2slim" |
The gem owner is @joaomilho. Can you please prepare a new release? You can also add me as owner if you like. |
Oh, hi @minad , yeah, I'm adding you as an admin. Been a bit away from this, but will learn again how to publish gems ASAP ha :D |
I have published the patched version under a new name, if it helps anyone:
|
erb2slim is raising an error because
File.exists?
was removed in ruby 3.2 in favor ofFile.exist?
The text was updated successfully, but these errors were encountered: