Jan03
RestClient 1.1: Multipart Uploads, and a New Maintainer
I’ve given over maintenance of RestClient to Julien Kirch (archiloque). He's got a 1.1 release now in Gemcutter/Rubyforge, with some hot new features:
Continue reading »Jan03
I’ve given over maintenance of RestClient to Julien Kirch (archiloque). He's got a 1.1 release now in Gemcutter/Rubyforge, with some hot new features:
Continue reading »May28
With HTTP basic auth starting to get the cold shoulder (passwords are basically low-complexity symmetric keys, not too hot for truly secure authentication), and OAuth experiencing growing pains, what options are available today for truly secure RESTful authentication?
Continue reading »Apr07
Cyril Rohr gives us Cacheability, a caching HTTP client which cleverly mashes together RestClient and Rack::Cache. It can cache results in memory, on the filesystem, or in memcached. Grab a copy:
Continue reading »Jan24
New stuff:
RestClient.get('http://example.com/pic.jpg').headers[:content_type]
resource = RestClient::Resource.new 'https://example.com', :timeout => 20
Oct14
Restclient 0.8 released with new features:
Sep22
A few more chances for you to catch me in person:
Aug19
I keep thinking I’ll run out of things to add to RestClient, but then I keep wanting more features. So here comes 0.7, with gzip/deflate support and client-side logs.
Continue reading »Aug08
John Nunemaker created HTTParty, a library for making web requests. So the options for making web calls from Ruby are now:
Continue reading »Aug01
RestClient 0.6 includes an interactive shell contributed by Blake Mizerany. Lay down your curl
, for we now have a Ruby Way to fetch resources at the command line!
Jun21
gem install rest-client
for new features:
site['posts/1/comments'].get
) (more examples)Apr05
The fourth release of rest-client includes a patch from Greg Borenstein that makes it easy to send form-urlencoded data by passing a hash instead of a string as the payload:
Continue reading »Mar11
Based on Dan Kubb's suggestion, I’ve implemented an ActiveResource-style accessor for rest-client. This also supports basic auth, so now:
Continue reading »Mar09
REST is part of the Ruby Way. Which is why I’m surprised that every time I go to access a RESTful resource, I find myself writing some sort of ad-hoc rest client. Net::HTTP is too low level - you’ve got to write at least three or four fairly dense lines of code even for a relatively simple GET or PUT.
Continue reading »