-
Notifications
You must be signed in to change notification settings - Fork 85
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
Support for Ruby 3 #179
Comments
Awesome, thanks @lfittl! Happy holidays to you, too. |
Just fyi, it looks like |
@ankane Yeah, I noticed that earlier. Given that Ruby < 2.5 is EOL, I think its probably fine to not handle that? (unless you see a benefit in adding it to the gemspec?) |
If it was part of the 1.3.0 release, Bundler would install 1.2.0 on Ruby 2.4 instead of failing with 1.3.0, so may just be something to keep in mind for next time. |
Hi @lfittl, thanks for this awesome project! With the latest version, installation fails for Ruby 3 with:
Looking at
extconf.rb
, I think it needs to useURI.open
instead ofopen
based on the Ruby 2.7 deprecation warning (warning: calling URI.open via Kernel#open is deprecated, call URI.open directly or use URI#open
).The text was updated successfully, but these errors were encountered: