I have an email and want to pull the corresponding image from gravatar.com
With ruby, it's easy:
require 'Digest/md5'
Digest::MD5.hexdigest("my string")
Since there is no require
method in RubyMotion, how do I generate the hash from the email?