Is there a curl library for Ruby?
|
feedback
|
|
Use open-uri and
accessing sites/pages/resources that require HTTP authentication. | |||||||||||||||
feedback
|
|
Curb and Curl::Multi provide cURL bindings for Ruby. | |||
|
feedback
|
|
If you like it less low-level, there is also Typhoeus, which is built on top of Curl::Multi. | |||||
feedback
|
|
Curb-fu is a wrapper around Curb which in turn uses libcurl. What does Curb-fu offer over Curb? Just a lot of syntactic sugar - but that can be often what you need. | |||
|
feedback
|
|
You might also have a look at Rest-Client | |||
|
feedback
|
|
There's also mechanize, very high-level web scraping client, uses Nokogiri for html parsing. | |||
|
feedback
|
|
Adding a more recent answer, HTTPClient is another Ruby library that uses libcurl, supports parallel threads and lots of the curl goodies. I use HTTPClient and Typhoeus for any non-trivial apps. | |||
|
feedback
|