public
Rubygem
Description: Twitter4R: The most complete Ruby bindings for the Twitter.com REST API
Homepage: http://twitter4r.rubyforge.org
Clone URL: git://github.com/mbbx6spp/twitter4r.git
name age message
file .gitignore Thu Apr 24 09:37:29 -0700 2008 Added files to .gitignore [mbbx6spp]
file CHANGES Mon Jun 30 21:23:04 -0700 2008 Added :replies support as per thread: http://gr... [mbbx6spp]
file MIT-LICENSE Sun Nov 04 12:32:28 -0800 2007 Added missing files (hopefully finally?) [mbbx6spp]
file README Thu Aug 21 09:31:10 -0700 2008 Added Carl Crawley to contributors list [mbbx6spp]
file Rakefile Mon Jun 30 19:43:48 -0700 2008 Added ROOT_DIR constant for reuse in subtask files [mbbx6spp]
file TODO Tue Jul 08 14:13:45 -0700 2008 Updated TODO [mbbx6spp]
directory config/ Mon Jun 30 20:30:08 -0700 2008 Added gemspec:generate Rake task with gemspec t... [mbbx6spp]
directory examples/ Sun Nov 04 19:03:19 -0800 2007 Added RCov HTML files and missing files from pr... [mbbx6spp]
directory lib/ Thu Aug 21 09:35:16 -0700 2008 Added fix by Carl Crawley to use POST instead o... [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 21 09:35:16 -0700 2008 Added fix by Carl Crawley to use POST instead o... [mbbx6spp]
directory tasks/ Mon Jun 30 20:30:08 -0700 2008 Added gemspec:generate Rake task with gemspec t... [mbbx6spp]
file twitter4r.gemspec Thu Aug 21 09:36:06 -0700 2008 Added newly generated gemspec [mbbx6spp]
directory web/ Sat Oct 20 18:17:51 -0700 2007 Added web and marketing directories [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
* 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

== 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]