Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
proc
/
thread-self
/
root
/
opt
/
ruby-2.7
/
usr
/
lib
/
ruby
/
2.7.0
/
rubygems
/
//proc/self/root/proc/thread-self/root/opt/ruby-2.7/usr/lib/ruby/2.7.0/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