class Protocol::HTTP::Reference

def split(path)

def split(path)
	if path.empty?
		[path]
	else
		path.split("/", -1)
	end
end