When i am passing some text like "http://google.com" to URI,
urls = URI.extract('http://google.com', ['http', 'https'])
# ['http://google.com']
i get back the proper URL. My problem here is, even if i pass without a domain but with host, still it needs to be a link and not text..
For example
urls = URI.extract('www.google.com', ['http', 'https'])
# ['']
I am not sure if URI.extract will work for my case.
Please suggest if any workaround for URI.extract or any other better / clean way to get this done.
Thanks is advance.
