module Bundler::URI
def self.decode_www_form_component(str, enc=Encoding::UTF_8)
This decodes + to SP.
Decodes given +str+ of URL-encoded form data.
def self.decode_www_form_component(str, enc=Encoding::UTF_8) _decode_uri_component(/\+|%\h\h/, str, enc) end