Skip to content

Instantly share code, notes, and snippets.

@foliea
Created November 26, 2014 17:11
Show Gist options
  • Save foliea/8c480ee3859e17a39ebc to your computer and use it in GitHub Desktop.
Save foliea/8c480ee3859e17a39ebc to your computer and use it in GitHub Desktop.
module ApplicationHelper
def title(title)
content_for(:title, title)
end
def gravatar_tag(email, options={})
id = Digest::MD5::hexdigest(email).downcase
size = options[:size] || 128
image_tag("https://secure.gravatar.com/avatar/#{id}?s=#{size}", options)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment