Skip to content

Instantly share code, notes, and snippets.

@kyledecot
Created May 21, 2012 19:12
Show Gist options
  • Save kyledecot/2764046 to your computer and use it in GitHub Desktop.
Save kyledecot/2764046 to your computer and use it in GitHub Desktop.
Ruby String#to_md5
require 'digest/md5'
class String
def to_md5
Digest::MD5.hexdigest(self)
end
end
# "Hello World!".to_md5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment