public
Description: Twitter4R: The most Ruby-like bindings for the Twitter.com REST API by a long way.
Homepage: http://twitter4r.rubyforge.org
Clone URL: git://github.com/mbbx6spp/twitter4r.git
name age message
file .gitignore Thu Jan 29 13:42:11 -0800 2009 Added gem product to ignore list [mbbx6spp]
file CHANGES Wed Feb 18 13:50:54 -0800 2009 Updated CHANGES and modified gemspec [mbbx6spp]
file MIT-LICENSE Sun Nov 04 12:32:28 -0800 2007 Added missing files (hopefully finally?) [mbbx6spp]
file README Sat Sep 19 14:33:55 -0700 2009 Merged upstread changes from twitter4r-0_3_2 br... [mbbx6spp]
file Rakefile Mon May 11 20:20:43 -0700 2009 Removed metrics rake tasks [mbbx6spp]
file TODO Mon Mar 16 22:03:25 -0700 2009 Updated TODO [mbbx6spp]
directory bin/ Wed Feb 18 13:48:37 -0800 2009 Reorganized code [mbbx6spp]
directory config/ Wed Feb 18 13:49:00 -0800 2009 Commented out require_path from gemspec [mbbx6spp]
directory examples/ Wed Feb 18 13:49:39 -0800 2009 Added examples for newish graph and profile met... [mbbx6spp]
directory lib/ Sat Nov 21 16:06:03 -0800 2009 Merge branch 'master' of git://github.com/harry... [mbbx6spp]
directory marketing/ Sat Oct 20 18:17:51 -0700 2007 Added web and marketing directories [mbbx6spp]
file pkg-info.yml Mon Jun 30 19:44:17 -0700 2008 Added extra_rdoc_files property and value and u... [mbbx6spp]
directory scripts/ Tue Jul 01 06:35:27 -0700 2008 Moved sanity test to more uniform location [mbbx6spp]
directory spec/ Thu Aug 13 16:52:42 -0700 2009 Added use of screen_name and user_id in users/s... [filipegiusti]
directory tasks/ Mon Mar 16 22:03:15 -0700 2009 Added metrics tasks [mbbx6spp]
file twitter4r.gemspec Sat Sep 19 15:20:07 -0700 2009 Upped version to 0.3.2 [mbbx6spp]
directory web/ Mon Mar 16 22:04:54 -0700 2009 Updated styles [mbbx6spp]
README
= Twitter4R

* Project Website - http://twitter4r.rubyforge.org
* Mailing List - http://groups.google.com/group/twitter4r-users

== Developers
* {Susan Potter}[http://SusanPotter.NET] <me at susanpotter dot net>

== Contributors
Code:
* Kaiichi Matsunaga <ma2 at lifemedia dot co dot jp> - proxy code suggestion
* Sergio Santos <> - message paging code suggestion
* Adam Stiles <adam at stilesoft dot com> - URI.encode => CGI.escape fix
* Carl Crawley <cwcrawley at gmail dot com> - Friendship get => post fix
* Christian Johansen <christian at cjohansen dot no> - in_reply_to attributes in Twitter::Status
* Harry Love <harrylove at gmail dot com> - added attributes to Twitter::Status
* Filipe Giusti <filipegiusti at gmail dot com> - fixed users/show issue that Twitter.com changed from under us

Design Suggestions:
* Bosco So <rubymeetup at boscoso dot com> - making Twitter::Error a RuntimeError instead of an Exception to prevent irb 
from crashing out.

== Description
Twitter4R provides an object based API to query or update your Twitter account via pure Ruby.  It hides the ugly 
HTTP/REST code from your code.

== External Dependencies
* Ruby 1.8 (tested with 1.8.6)
* RSpec gem 1.0.0+ (tested with 1.1.3)
* JSON gem 0.4.3+ (tested with versions: 1.1.1 and 1.1.2)
* jcode (for unicode support)

== Usage Examples
Twitter4R starting with version 0.1.1 and above is organized into seven parts:
* {Configuration API}[link:files/examples/configure_rb.html]
* {Friendship API}[link:files/examples/friendship_rb.html]
* {Messaging API}[link:files/examples/messaging_rb.html]
* {Model API}[link:files/examples/model_rb.html]
* {Status API}[link:files/examples/status_rb.html]
* {Timeline API}[link:files/examples/timeline_rb.html]
* {User API}[link:files/examples/user_rb.html]