module Bundler::URI::Escape
def unescape(*arg)
# => "http://example.com/?a=\t\r"
Bundler::URI.unescape(enc_uri)
# => "http://example.com/?a=%09%0D"
enc_uri = Bundler::URI.escape("http://example.com/?a=\11\15")
require 'bundler/vendor/uri/lib/uri'
== Usage
depending on your specific use case.
CGI.unescape, Bundler::URI.decode_www_form or Bundler::URI.decode_www_form_component
This method is obsolete and should not be used. Instead, use
== Description
String to unescape.
+str+::
== Args
Bundler::URI.unescape(str)
== Synopsis
def unescape(*arg) warn "Bundler::URI.unescape is obsolete", uplevel: 1 DEFAULT_PARSER.unescape(*arg) end