Skip to content

Instantly share code, notes, and snippets.

@jhamon
Created May 2, 2014 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhamon/8fce9446d8bd4ba82d40 to your computer and use it in GitHub Desktop.
Save jhamon/8fce9446d8bd4ba82d40 to your computer and use it in GitHub Desktop.
Build the gravitar image avatar url from a user email address.
require 'openssl'
def gravitar_url(email)
base = 'http://www.gravatar.com/avatar/'
base + OpenSSL::Digest::MD5.new(email).to_s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment