i'm using the following to verify if a URL is formatted validly:
validates_format_of :website, :with => URI::regexp(%w(http https))
however, it doesn't work when the url doesn't start with http://
or https://
. Is there some similar way to validate URLs with URI::regexp
(or URI
) and make it include valid URLs that don't start with http://
? (For example, www.google.com
is valid, as is http://www.google.com
)