I am using Ruby on Rails 3.2.9. A my model class has a link attribute and, before to store related objects in to the database, I would like to prepend that value (a URL, kind of strings) with a default protocol if it's absent (example protocols can be http://, https://, ftp://, ftps:// and so on; the default one is http://). In order to make that I am thinking to implement a Rails callback with some regex and maybe by using the URI Ruby library, but I am in trouble on how to implement that.
Any idea? How can / should I make that?
