Is there a curl library for Ruby?

link|improve this question

40% accept rate
feedback

7 Answers

up vote 13 down vote accepted

Use open-uri and

  open("http://...", :http_basic_authentication=>[user, password])

accessing sites/pages/resources that require HTTP authentication.

link|improve this answer
8  
Honestly, if I see that a library uses open-uri internally, I don't use that library. It's a deeply flawed library built on top of a deeply flawed URI parser. It's fine for usage in IRB and that's it. – Bob Aman Jun 1 '09 at 19:30
@Sporkmonger: Well, that's what we have— what do you suggest, raw Net::HTTP? – apostlion Jun 2 '09 at 5:18
2  
Use Net::HTTP or Patron or Curb or any of the other libraries mentioned in the other answers. How this answer got voted up or accepted is beyond me. – Bob Aman Oct 25 '09 at 3:22
3  
Well maybe because open-uri is part of standard library? – Nick Gorbikoff Mar 24 '11 at 21:13
feedback

Curb and Curl::Multi provide cURL bindings for Ruby.

link|improve this answer
feedback

If you like it less low-level, there is also Typhoeus, which is built on top of Curl::Multi.

link|improve this answer
2  
I wonder why you got thumbed down? – method May 31 '09 at 5:53
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.

link|improve this answer
feedback

You might also have a look at Rest-Client

link|improve this answer
feedback

There's also mechanize, very high-level web scraping client, uses Nokogiri for html parsing.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.