I'm trying to parse a URI with Ruby's URI library. This URI contains a #. For example, I have the URI: http://twitter.com/#!/dhh/status/26464821879
When I call URI.parse("http://twitter.com/#!/dhh/status/26464821879").path
"/" is returned, when I would expect to see "/#!/dhh/status/26464821879" returned.
How can I get URI.parse to properly return the path for this URI object?