Skip to content

Instantly share code, notes, and snippets.

@overture8
Created October 2, 2009 19:51
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 overture8/200046 to your computer and use it in GitHub Desktop.
Save overture8/200046 to your computer and use it in GitHub Desktop.
require 'md5'
module CommentsHelper
def gravatar_url_for(email = null, size = 80)
hash = MD5::md5(email.downcase)
image_src = "http://www.gravatar.com/avatar/#{hash}?s=#{size}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment