Open jbockler opened 6 months ago
URI::encode was deprecated and finally removed in Ruby 3. CGI::escape would escape everything. With URI::Parser we get the same result as before.
URI::encode
CGI::escape
URI::Parser
URI::encode
was deprecated and finally removed in Ruby 3.CGI::escape
would escape everything. WithURI::Parser
we get the same result as before.