# File lib/httpclient/util.rb, line 46 def urify(uri) if uri.nil? nil elsif uri.is_a?(URI) uri else URI.parse(uri.to_s) end end