negonicrac / gravtastic forked from chrislloyd/gravtastic

Easily add Gravatars to your Ruby classes.

This URL has Read+Write access

Davi K. Vidal (author)
Fri Oct 31 10:32:25 -0700 2008
name age message
file .gitignore Fri Aug 29 22:53:00 -0700 2008 Upgrade to the latest version of Ditz. [chrislloyd]
file LICENSE Sun Jun 08 17:36:03 -0700 2008 More newgem cleanup. * Added name to LICENSE *... [chrislloyd]
file README.textile Loading commit data...
file Rakefile Sat Aug 30 05:16:46 -0700 2008 2.0.0! [chrislloyd]
directory bugs/ Sat Aug 30 05:16:46 -0700 2008 2.0.0! [chrislloyd]
file gravtastic.gemspec Sat Aug 30 05:16:46 -0700 2008 2.0.0! [chrislloyd]
directory lib/ Sat Aug 30 05:09:49 -0700 2008 Updated documentation. [chrislloyd]
directory spec/ Sat Aug 30 04:37:26 -0700 2008 Full DataMapper integration! [chrislloyd]
README.textile

Easily add Gravatars to your Ruby objects.

Install

sudo gem install gravtastic

Usage

Raw Ruby

Just add

require ‘gravtastic’

In somewhere in your application and

include Gravtastic::Resource

Before is_gravtastic.

Rails

In Rails >= 2.1 you can add a dependency gem dependency for Gravtastic. At yours environment.rb, add:

config.gem ‘gravtastic’

Merb & DataMapper

If you are using Merb & DataMapper you can add do the same by adding the following to your init.rb file:

dependency ‘gravtastic’

Make sure you add this after either the use_orm :datamapper line or after a DataMapper extension.

Models

The next step is to give your model a Gravatar.

Raw Ruby

class User include Gravtastic::Resource is_gravtastic :with => :email end

Rails & Merb

class User is_gravtastic end

This defaults to looking for the gravatar ID on the email method. So, if your User has an email then it will send that to Gravatar to get their picture. You can change the default gravatar source like this:

is_gravtastic :with => :author_email

Now, you can access your object’s gravatar with the gravatar_url method:

current_user.gravatar_url => “http://gravatar.com/e9e719b44653a9300e1567f09f6b2e9e.png?r=PG”

Note that it defaults to a PG rating. You can specify extra options with a hash:

current_user.gravatar_url(:rating => ‘R’, :size => 512) => “http://gravatar.com/e9e719b44653a9300e1567f09f6b2e9e.png?r=R18&s=512” current_user.gravatar_url(:secure => true) => “https://secure.gravatar.com/e9e719b44653a9300e1567f09f6b2e9e.png?r=PG”

However, to DRY things up you can specify defaults in the class declaration.

is_gravtastic :with => :author_email, :rating => ‘R’, :size => 20

Nice, now all the calls to gravatar_url will have the defaults you have specified. Any options that you pass when you use gravatar_url will over-ride these class-defaults.

PS. Bonus points for anybody who can tell me what that users email is!

Authors

Contribute

You can checkout the source or fork it yourself from Github.

git clone git://github.com/chrislloyd/gravtastic.git

If you submit a successful patch then you’ll be given full commit rights to the project.

Thanks

License

Copyright © 2008 Chris Lloyd.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
‘Software’), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.