There were to many discussion about url escaping in ruby, but unfortunately I didn't find appropriate solution. In general URI.escape should do the job, but looks like it doesn't support all characters, for example it doesn't escape "[".
URI.parse(URI.escape("1111{3333")) - works well URI.parse(URI.escape("1111[3333")) - raise exception
I understand that "[" it's not eligible character in url according to RFC, but when I enter it to browser, it takes it, and renders the page, so I need exactly the same behavior.
Do know any ready solution for escaping in ruby?