Method: String#md5

Defined in:
lib/gorge/string.rb

#md5String

Returns the MD5 hash (in hexadecimal format) of the String.

Returns:



13
14
15
# File 'lib/gorge/string.rb', line 13

def md5
  Digest::MD5.hexdigest(self)
end