I know this is a common error and i'm using a known solution but its still giving me the same error:
require 'open-uri'
url = "http://website.com/dirs/filex[a]"
safeurl = URI.parse(URI.encode(url))
...
Gives URI::InvalidURIError: bad URI(is not URI?):
I know its the [ and ] characters causing this. But the URI.encode isn't doing anything
What am I doing wrong?
