Slide 25
Slide 25 text
Other deprecated methods
● Kernel.#open for URI. (In Ruby 2.7.0-dev)
○ Use URI.open.
■ File.open, IO.open, and IO.popen are also avairable.
● URI.escape
○ Use ERB::Util.#url_encode, CGI.escape, or
URI.encode_www_form_component
○ It depends on the requirement.