README.md in localjob-0.0.2 vs README.md in localjob-0.1.0

- old
+ new

@@ -1,11 +1,11 @@ # Localjob Localjob is a simple, self-contained background queue built on top of [POSIX message queues][pmq]. Workers and the app pushing to the queue must reside on -the same machine. It's the sqlite of background queues (although sqlite scales -further than Localjob). Here's a post about [how it works][blog]. +the same machine. It's the sqlite of background queues. Here's a post about [how +it works][blog]. Localjob is for early-development situations where you don't need a full-featured background queue, but just want to get started with something simple that does not rely on any external services. A bigger goal with the project is to be able to migrate to another background queue system by switching @@ -15,16 +15,15 @@ The POSIX message queue is persistent till reboot. You **will need to tune system parameters for your application**, please consult [posix-mqueue][pmq-gem]'s documentation. Localjob works on Ruby >= 2.0.0. On Linux, it will use the POSIX message queue. -On OS X (and Windows, not tested) it will use a mock class instead of the -message queue, to aid you in testing and running Localjob in development. +On OS X it will use SysV message queues. Add it to your Gemfile: ```ruby -gem 'localjob' +gem 'localjob', "0.1.0" ``` ## Usage Localjobs have the following format: