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
Ruby 2.7.x triggers obsolete warnings for URI.escape. Could we consider using the well-maintained Addressable gem (https://github.com/sporkmonger/addressable) or using a different approach like CGI::escape or ERB::Util.url_encode?
I can create a pull request if that helps.
/usr/local/Cellar/rbenv/1.1.2/versions/2.7.1/lib/ruby/gems/2.7.0/gems/kimurai-1.4.0/lib/kimurai/base_helper.rb:7: warning: URI.escape is obsolete
Thanks.
The text was updated successfully, but these errors were encountered:
Yeah that was a bit annoying to deal with, but I slowly changed this in my own projects too. Most use
I actually had was via .open() aka URI.open() now.
Warnings can cause quite some extra work to projects ...
Ruby 2.7.x triggers obsolete warnings for
URI.escape
. Could we consider using the well-maintained Addressable gem (https://github.com/sporkmonger/addressable) or using a different approach likeCGI::escape
orERB::Util.url_encode
?I can create a pull request if that helps.
Thanks.
The text was updated successfully, but these errors were encountered: