README.md in sysvmq-0.1.0 vs README.md in sysvmq-0.1.1

- old
+ new

@@ -1,20 +1,23 @@ -# sysvmq +# sysvmq [![Build Status](https://travis-ci.org/Sirupsen/sysvmq.png?branch=v0.1.0)](https://travis-ci.org/Sirupsen/sysvmq) `sysvmq` is a C extension that wraps SysV IPC Message Queues. It's similar to the [POSIX MQ Ruby wrapper](https://github.com/Sirupsen/posix-mqueue). Message queues are handy for interprocess communication where you want to be able to take down either endpoint easily. The main disadvantage of SysV message queues over POSIX MQs (on Linux) is that SysV doesn't expose a file descriptor to do e.g. `select(2)` on. +Note that `sysvmq` doesn't rely on any third-party message broker. The message +queue is handled by the kernel. It's extremely stable and performant. + ## Installation Add `sysvm` to your Gemfile. `gem 'sysvmq'` -Currently known to work on Linux (MRI >= 2.0). +Currently known to work on Linux and OS X for MRI >= 2.0. ## Usage ```ruby # Create a message queue with a 1024 byte buffer.