Bergrebell / CyberCoach

1 stars 1 forks source link

gavatar #25

Closed lexruee closed 9 years ago

lexruee commented 9 years ago

integrate gravatar into our app

lexruee commented 9 years ago

@Bergrebell

Can you refactor these lines in the users controller and put them in a method callaed gravatar_tag?

gravatar_id = Digest::MD5.hexdigest(@user.email.downcase)
@gravatar_url = "http://gravatar.com/avatar/#{gravatar_id}.png?s=125&d"

....

image_tag @gravatar_url

Example usage:

 <%= gravatar_tag 'test@test.com %>

Rails tag helper: http://stackoverflow.com/questions/3797040/create-custom-html-helpers-in-ruby-on-rails

Bergrebell commented 9 years ago

@lexruee thanks! i'll do it!

lexruee commented 9 years ago

refined in commit: 3cadabf9230587bb60940fc5b234126df702ca87