johnlinvc / mruby-curl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

= mruby-curl

mruby-curl is an mruby wrapper for libcurl.

== Usage

Example:

curl = Curl.new

headers = {
  'User-Agent' => 'mruby-curl'
}

response = curl.get("http://www.ruby-lang.org/ja/", headers)

puts response.body

mruby-curl has support for HTTP methods DELETE, GET, PATCH, POST, and PUT through instance methods on the Curl object and supports arbitrary HTTP requests using Curl#send with an HTTP::Request object from mruby-http.

== Threaded use

By default mruby-curl does not call curl_global_init. If you are using mruby-curl in a multithreaded environment you must call it yourself.

If threads are started from within mruby the Curl.global_init method will initialize curl with the default flags. You must call it before starting threads that will use mruby-curl methods.

If mruby is started from a multi-threaded program you must call curl_global_init before starting any mruby threads.

See the curl_global_init documentation for more details.

About


Languages

Language:C 82.7%Language:Ruby 15.4%Language:Makefile 1.9%