I am working on an application built with rails where I need to be able to generate urls with a "#" character at the beginning, like so:
user_path outputs "#/user/1"
dashboard_url outputs "http://mydomain.com/#/dashboard"
..and so on...
Any ideas what might be the best way to override the URL helper?