class Bundler::URI::FTP

def to_s

Returns a String representation of the Bundler::URI::FTP.
def to_s
  save_path = nil
  if @typecode
    save_path = @path
    @path = @path + TYPECODE_PREFIX + @typecode
  end
  str = super
  if @typecode
    @path = save_path
  end
  return str
end