Hi, I have a url field named link in my model with the following validation
validates_uniqueness_of :link, :case_sensitive => false
When I put "http://stackoverflow.com", it goes well. Now when I put "http://stackoverflow.com/" (with the trailing slach), this is also accepted as unique. But I want it to be invalid though there is "/" at the last?