class Gem::UriFormatter
The UriFormatter
handles URIs from user-input and escaping.
uf = Gem::UriFormatter.new 'example.com' p uf.normalize #=> 'http://example.com'
Attributes
Public Class Methods
Public Instance Methods
Source
Source
# File lib/rubygems/uri_formatter.rb, line 36 def normalize /^(https?|ftp|file):/i.match?(@uri) ? @uri : "http://#{@uri}" end
Normalize the URI
by adding “http://” if it is missing.