module Bundler::URI

def self.decode_uri_component(str, enc=Encoding::UTF_8)

This does not decode + to SP.

Decodes given +str+ of URL-encoded data.
def self.decode_uri_component(str, enc=Encoding::UTF_8)
  _decode_uri_component(/%\h\h/, str, enc)
end