Skip to content

johnlinvc/mruby-curl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

= 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

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 82.7%
  • Ruby 15.4%
  • Makefile 1.9%