how do I add gravatar/identicons into ruby on rails? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T22:36:57Zhttp://stackoverflow.com/feeds/question/770876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/770876/how-do-i-add-gravatar-identicons-into-ruby-on-rails0how do I add gravatar/identicons into ruby on rails?Angela2009-04-21T02:56:22Z2009-10-08T20:50:46Z
<p>I have looked at the following, but they aren't clear, particularly the reference to DataMapper and gem dependencies.</p>
<p>all I want as an outcome is to be able to take my @user.email value that is in a |do| loop and display a gravatar where identicon is set to "y" -- in other words, those cute seemingly random drawings!</p>
<p>But when I look at what is available, it isn't clear what to do -- particularly the references to DataMapper and gem dependencies.</p>
<p><a href="http://github.com/chrislloyd/gravtastic/tree/master" rel="nofollow">http://github.com/chrislloyd/gravtastic/tree/master</a></p>
<p>I am playing around with this but wanted to get feedback from others before diving too deep!</p>
<p><a href="http://www.thechrisoshow.com/2008/10/27/adding-gravatars-to-your-rails-apps" rel="nofollow">http://www.thechrisoshow.com/2008/10/27/adding-gravatars-to-your-rails-apps</a></p>
<p>I installed woods gravatar plugin:</p>
<p><a href="http://github.com/woods/gravatar-plugin/tree/master" rel="nofollow">http://github.com/woods/gravatar-plugin/tree/master</a> which is the same as the one referred below...however, I get an error when I type in:</p>
<p><code><%= gravatar_for @user %></code></p>
<p>The error is:</p>
<pre><code>undefined method `gravatar_for' for #<ActionView::Base:0x474ddf4>
</code></pre>
http://stackoverflow.com/questions/770876/how-do-i-add-gravatar-identicons-into-ruby-on-rails/770883#7708831Answer by Sam152 for how do I add gravatar/identicons into ruby on rails?Sam1522009-04-21T03:01:39Z2009-04-21T03:08:42Z<p>You need to md5 hash the email address and then put it into a gravatar URL. That will give you the image url. Below is an example of how to do it.</p>
<pre><code>http://www.gravatar.com/avatar/ md5(email) ?s=128&d=identicon&r=PG
</code></pre>
<p>If you want those random drawings that appear you can use and md5 hash to get them. You could hash the key value in a loop and obtain a list that way.</p>
http://stackoverflow.com/questions/770876/how-do-i-add-gravatar-identicons-into-ruby-on-rails/770902#7709020Answer by Terry for how do I add gravatar/identicons into ruby on rails?Terry2009-04-21T03:12:48Z2009-04-21T03:12:48Z<p>There's a Gravatar Rails plugin that can be found here:</p>
<p><a href="http://gravatarplugin.rubyforge.org/" rel="nofollow">http://gravatarplugin.rubyforge.org/</a></p>
<p>Install the plugin like this:</p>
<pre><code> ruby script/plugin install svn://rubyforge.org//var/svn/gravatarplugin/plugins/gravatar
</code></pre>
<p>After installing the plugin, if your model responds to an 'email' method, this tag will show the Gravatar:</p>
<pre><code> <%= gravatar_for @user %>
</code></pre>
http://stackoverflow.com/questions/770876/how-do-i-add-gravatar-identicons-into-ruby-on-rails/1540382#15403820Answer by slant for how do I add gravatar/identicons into ruby on rails?slant2009-10-08T20:50:46Z2009-10-08T20:50:46Z<p>Not to repeat too much, but instead to give a more detailed answer:</p>
<p>As Sam152 said, you must create an MD5 hash from the user's email address which is then used in a GET request to the gravatar server.</p>
<p>The easiest way to gain access to MD5 hashes is through Digest, part of the ActionPack (inside ActionView) gem. Place the following in 'config/environment.rb':</p>
<pre><code>require 'digest'
</code></pre>
<p>Now you only need to use the following where you wish to display the user's gravatar:</p>
<pre><code>image_tag("http://www.gravatar.com/avatar.php?gravatar_id=#{Digest::MD5::hexdigest(@user.email)}", :alt => 'Avatar', :class => 'avatar')
</code></pre>
<p>This requires no additional gems and you can create a helper as needed if all you require is pulling in the user's gravatar.</p>