Sha256: 51ea14f462b2626f3e633bfd3691371590887dbfcb0ced9402b6067083f5add9
Contents?: true
Size: 1.89 KB
Versions: 2
Compression:
Stored size: 1.89 KB
Contents
# Libuv FFI bindings for Ruby [![Build Status](https://travis-ci.org/cotag/libuv.png?branch=master)](https://travis-ci.org/cotag/libuv) [Libuv](https://github.com/joyent/libuv) is a cross platform asynchronous IO implementation that powers NodeJS. It supports sockets, both UDP and TCP, filesystem watch, TTY, Pipes and other asynchronous primitives like timer, check, prepare and idle. The Libuv gem contains Libuv and a Ruby wrapper that implements [pipelined promises](http://en.wikipedia.org/wiki/Futures_and_promises#Promise_pipelining) for asynchronous flow control ## Usage Create a new libuv loop or use a default one ```ruby require 'libuv' loop = Libuv::Loop.default # or # loop = Libuv::Loop.new loop.run do timer = loop.timer do puts "5 seconds passed" timer.close loop.stop end timer.catch do |error| puts "error with timer: #{error}" end timer.finally do puts "timer handle was closed" end timer.start(5000) end ``` Check out the [yard documentation](http://rubydoc.info/gems/libuv/Libuv/Loop) ## Installation ```Shell gem install libuv ``` or ```shell git clone https://github.com/cotag/libuv.git cd libuv bundle install rake compile ``` ### Prerequisites * The installation requires __subversion__ to be installed on your system and available on the PATH * Windows users will require a copy of Visual Studio 2010 or later. [Visual Studio Express](http://www.microsoft.com/visualstudio/eng/products/visual-studio-express-products) works fine. or * setting the environmental variable `USE_GLOBAL_LIBUV` will prevent compiling the packaged version. * if you have a compatible `libuv.(so | dylib | dll)` on the PATH already ## What's supported * TCP * UDP * TTY * Pipe * Timer * Prepare * Check * Idle * Async * Signals * Filesystem Events * File manipulation * Filesystem manipulation * Errors * Work queue (thread pool)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libuv-0.10.3 | README.md |
libuv-0.10.2 | README.md |