path_query()
returns the assemble String with path and query components
# File lib/uri/generic.rb, line 1441 def path_query str = @path if @query str += '?' + @query end str end