curl-library
[ANN] Ruby Curl::Multi version 0.1
Date: Fri, 9 Nov 2007 14:35:05 -0800
== Announcing Ruby Curl::Multi version 0.1 ==
This is the first release of Curl::Multi, supporting just the basics.
This release uses RubyInline to help with the C interface.
== What is Ruby Curl::Multi? ==
Curl::Multi provides very high-level Ruby bindings for the libcurl multi
interface.
It was originally written for use by www.causesonfacebook.com to process
many concurrent http requests. Curl::Multi is written and maintanied by
Kristján Pétursson and Keith Rarick.
See http://curl-multi.rubyforge.org/ for more info.
== The basics ==
require 'curl-multi'
curl = Curl::Multi.new
on_success = lambda do |body|
puts body
end
on_failure = lambda do |ex|
puts 'Failure.'
puts ex
end
curl.get('http://www.example.org/', on_success, on_failure)
curl.select([], []) while curl.size > 0
There's not much more to the interface. A good thing, too, because we
don't really have any documentation yet. Patches are most welcome!
== Forum ==
http://groups.google.com/group/ruby-curl-multi
http://curl-multi.rubyforge.org/
kr
Received on 2007-11-09