Ruby/libcurl is Ruby extention for libcurl supporting HTTP FTP SSL.

  Ruby
    http://www.ruby-lang.org/

  libcurl 7.6.1
    http://curl.haxx.se/libcurl/

  supported functions
    curl_easy_init() 
    curl_easy_cleanup() 
    curl_easy_setopt() 
    curl_easy_perform() 
    {curl_easy_getinfo()  Not Yet!}

  O/S
    FreeBSD only now. sorry!
    maybe easy to port to Linux and Win. Sombody please!

----------------------------------------------------------------------

Class Methods:

  Curl.new

Instance Methods:

  self.perform
  self.header_str
  self.body_str
  self.input_str= String
  self.input_str

  self.url= String
  self.url
  self.proxy= String
  self.proxy
  self.proxyport= Number
  self.proxyport
  self.userpwd= String
  self.userpwd
  self.useragent= String
  self.useragent
  self.cookie= String
  self.cookie
  self.postfields= String
  self.postfields
  self.followlocation= true|false
  self.followlocation
  self.timeout= Number
  self.timeout
  self.proxyuserpwd= String
  self.proxyuserpwd
  self.httpproxytunnel= true|false
  self.httpproxytunnel
  self.failonerror= true|false
  self.failonerror
  self.referer= String
  self.referer
  self.sslcert= String
  self.sslcert
  self.sslcertpasswd= String
  self.sslcertpasswd
  self.sslversion= Number
  self.sslversion
  self.cookiefile= String
  self.cookiefile
  self.customrequest= String
  self.customrequest
  self.timecondition= Number
  self.timecondition
  self.timevalue= Number
  self.timevalue
  self.maxredirs= Number
  self.maxredirs
  self.netrc= true|false
  self.netrc
  self.ftplistonly= true|false
  self.ftplistonly
  self.ftpappend= true|false
  self.ftpappend
  self.transfertext= true|false
  self.transfertext
  self.range= String
  self.range
  self.ftpport= String
  self.ftpport
  self.low_speed_limit= Number
  self.low_speed_limit
  self.low_speed_time= Number
  self.low_speed_time
  self.resume_from= Number
  self.resume_from
  self.crlf= true|false
  self.crlf
  self.interface= String
  self.interface
  self.krb4level= String
  self.krb4level
  self.ssl_verifypeer= true|false
  self.ssl_verifypeer
  self.cainfo= String
  self.cainfo
  self.verbose= true|false
  self.verbose
  self.httpheader= [String, String,..]
  self.httpheader
  self.quote= [String, String,..]
  self.quote
  self.postquote= [String, String,..]
  self.postquote
  self.header= true|false
  self.header
  self.nobody= true|false
  self.nobody
  self.put= true|false
  self.put
  self.upload= true|false
  self.upload
  self.file= "filename"
  self.file
  self.writeheader= "filename"
  self.writeheader
  self.infile= "filename"
  self.infile
  self.stderr= "filename"
  self.stderr

  self.httppost= true|false
  self.httppost
  self.progressfunction= Proc
  self.progressfunction
  self.passwdfunction= Proc
  self.passwdfunction

----------------------------------------------------------------------

Copying

Ruby/libcurl is copyrighted free software by Hirotaka Matsuyuki
<h-maty@h6.dion.ne.jp>.
You can redistribute it and/or modify it under either the terms
of the GPL, or the conditions below:

  1. You may make and give away verbatim copies of the source form of the
     software without restriction, provided that you duplicate all of the
     original copyright notices and associated disclaimers.

  2. You may modify your copy of the software in any way, provided that
     you do at least ONE of the following:

       a) place your modifications in the Public Domain or otherwise
          make them Freely Available, such as by posting said
          modifications to Usenet or an equivalent medium, or by allowing
          the author to include your modifications in the software.

       b) use the modified software only within your corporation or
          organization.

       c) rename any non-standard executables so the names do not conflict
          with standard executables, which must also be provided.

       d) make other distribution arrangements with the author.

  3. You may distribute the software in object code or executable
     form, provided that you do at least ONE of the following:

       a) distribute the executables and library files of the software,
          together with instructions (in the manual page or equivalent)
          on where to get the original distribution.

       b) accompany the distribution with the machine-readable source of
          the software.

       c) give non-standard executables non-standard names, with
          instructions on where to get the original software distribution.

       d) make other distribution arrangements with the author.

  4. You may modify and include the part of the software into any other
     software (possibly commercial).  But some files in the distribution
     are not written by the author, so that they are not under this terms.

  5. The scripts and library files supplied as input to or produced as 
     output from the software do not automatically fall under the
     copyright of the software, but belong to whomever generated them, 
     and may be sold commercially, and may be aggregated with this
     software.

  6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
     IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     PURPOSE.

