method
uri_encode

uri_encode(str)
public
Hide source
# File lib/rubygems/server.rb, line 459 def uri_encode(str) str.gsub(URI::UNSAFE) do |match| match.each_byte.map { |c| sprintf('%%%02X', c.ord) }.join end end