Current Path : /proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/opt/alt/ruby27/share/rubygems/rubygems/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/opt/alt/ruby27/share/rubygems/rubygems/uri_parsing.rb |
# frozen_string_literal: true require "rubygems/uri_parser" module Gem::UriParsing def parse_uri(source_uri) return source_uri unless source_uri.is_a?(String) uri_parser.parse(source_uri) end private :parse_uri def uri_parser require "uri" Gem::UriParser.new end private :uri_parser end