I released version 0.1.6 on 10/29/2009. It includes new syntax for
specifying other HTTP verbs besides GET and POST as well as a short
way of including parts in your paths that aren't valid Ruby methods.
The changelog is here:
http://github.com/hayesdavis/grackle/blob/0.1.6/CHANGELOG.rdoc
Example Delete:
client.delete { hayesdavis.direct_messages.destroy :id=>12345 }
Example Non-Valid-Ruby-Method Path:
#GET /hayesdavis/1/members.json
client.hayesdavis._('1').members?
There are more examples in the README.
Hayes