This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
contacts /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Mar 03 15:25:01 -0800 2009 | |
| |
LICENSE | Fri Mar 21 16:42:20 -0700 2008 | |
| |
README | ||
| |
Rakefile | Sat Jul 11 01:37:39 -0700 2009 | |
| |
contacts.gemspec | ||
| |
cruise_config.rb | Tue Mar 03 15:25:01 -0800 2009 | |
| |
examples/ | Fri Mar 21 16:42:20 -0700 2008 | |
| |
geminstaller.yml | Tue Mar 03 15:25:01 -0800 2009 | |
| |
lib/ | ||
| |
test/ | Sat Jul 11 01:30:22 -0700 2009 |
README
== Welcome to Contacts Contacts is a universal interface to grab contact list information from various providers including Hotmail, Gmail and Yahoo. == Download * gem install contacts * http://rubyforge.org/projects/contacts * svn co svn://rubyforge.org/var/svn/contacts == Background For a long time, the only way to get a list of contacts from your free online email accounts was with proprietary PHP scripts that would cost you $50. The act of grabbing that list is a simple matter of screen scrapping and this library gives you all the functionality you need. Thanks to the generosity of the highly popular Rails website MOG (http://mog.com) for allowing this library to be released open-source to the world. It is easy to extend this library to add new free email providers, so please contact the author if you would like to help. == Usage Contacts::Hotmail.new(login, password).contacts # => [["name", "foo@bar.com"], ["another name", "bow@wow.com"]] Contacts::Yahoo.new(login, password).contacts Contacts::Gmail.new(login, password).contacts Contacts.new(:gmail, login, password).contacts Contacts.new(:hotmail, login, password).contacts Contacts.new(:yahoo, login, password).contacts Contacts.guess(login, password).contacts Notice there are three ways to use this library so that you can limit the use as much as you would like in your particular application. The Contacts.guess method will automatically concatenate all the address book contacts from each of the successful logins in the case that a username password works across multiple services. == Examples See the examples/ directory. == Authors * Lucas Carlson from MOG (mailto:lucas@rufy.com) - http://mog.com == Contributors * Britt Selvitelle from Twitter (mailto:anotherbritt@gmail.com) - http://twitter.com * Tony Targonski from GigPark (mailto:tony@gigpark.com) - http://gigpark.com * Waheed Barghouthi from Watwet (mailto:waheed.barghouthi@gmail.com) - http://watwet.com * Glenn Sidney from Glenn Fu (mailto:glenn@glennfu.com) - http://glennfu.com This library is released under the terms of the BSD.









