Topic: Gravatar Helper Method
Hi
I have followed this railscast on Gravatars
i have this helper method
module ApplicationHelper
def avatar_url(user)
gravatar_id = Digest::MD5.hexdigest(user.email.downcase)
"http://gravatar.com/avatar/#{gravatar_id}.png?s=200"
end
endand this in the view
<%= image_tag avatar_url(user) %> How do i add options so when i specify a size it changes the s=200 to the size i specified?
Thanks