public
Description: Lightweight Ruby library for the Twitter API that supports both Basic and OAuth authentication.
Homepage:
Clone URL: git://github.com/hayesdavis/grackle.git
commit  791ba696441239891843e9f3ac229f5ca0b18f9a
tree    6117e0d0512acb615fa0cf944380d3580a0e6b34
parent  7041b6408e387eca9ba89d3e5ef33ef766cbc1f7
grackle / CHANGELOG.rdoc
100644 29 lines (23 sloc) 1.226 kb

0.1.6 (2009-10-29)

  • Added support for HTTP methods beside GET and POST using block syntax
  • Added method for appending to the request path something that’s not a valid ruby method

0.1.5 (2009-10-28)

Added support for the Twitter version 1 API as a API symbol :v1

0.1.4 (2009-08-09)

Added additional check for 3xx responses that don’t have location headers.

0.1.3 (2009-08-09)

Merged in changes from gotwalt for timeouts and redirects. Revised 30x redirect handling to support a limit that prevents infinite redirects.

0.1.2 (2009-05-11)

Changed :site param used by OAuth to be determined dynamically unless explicitly specified as part of the :auth param to the Client constructor. This param needs to match the scheme and authority of the request using OAuth or the signing will not validate.

0.1.1 (2009-05-10)

Fixed issue where SSL setting wasn’t being applied correctly to Net:HTTP which was preventing SSL-enabled requests from working correctly.

0.1.0 (2009-04-12)

  • Added OAuth authentication
  • Deprecated :username and :password Grackle::Client constructor params
  • Changed multipart upload implementation and removed dependency on httpclient gem
  • Added dependency on mime-types gem