Class: Gem::UriFormatter
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/rubygems/uri_formatter.rb |
Overview
Class Method Summary
- .new(uri) ⇒ UriFormatter constructor
Instance Attribute Summary
-
#uri
readonly
The URI to be formatted.
Instance Method Summary
Constructor Details
.new(uri) ⇒ UriFormatter
[ GitHub ]
Instance Attribute Details
#uri (readonly)
The URI to be formatted.
# File 'lib/rubygems/uri_formatter.rb', line 14
attr_reader :uri
Instance Method Details
#escape
Escapes the #uri for use as a CGI parameter
# File 'lib/rubygems/uri_formatter.rb', line 28
def escape return unless @uri CGI.escape @uri end
#normalize
Normalize the URI
by adding “http://” if it is missing.
# File 'lib/rubygems/uri_formatter.rb', line 36
def normalize /^(https?|ftp|file):/i.match?(@uri) ? @uri : "http://#{@uri}" end
#unescape
Unescapes the #uri which came from a CGI parameter
# File 'lib/rubygems/uri_formatter.rb', line 43
def unescape return unless @uri CGI.unescape @uri end