rb-zmq 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.txt +5 -1
- metadata +1 -1
data/README.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
=
|
1
|
+
= rb-zmq
|
2
2
|
|
3
3
|
* http://www.zeromq.org
|
4
4
|
|
@@ -11,6 +11,8 @@ This gem comprises the ruby bindings for ZeroMQ
|
|
11
11
|
* Posix signal handling is a bit goofy, so things like handling SIGTERM (ctrl-c) at the console have to be done by hand.
|
12
12
|
|
13
13
|
== SYNOPSIS:
|
14
|
+
require 'rubygems'
|
15
|
+
gem 'ruby-mq'
|
14
16
|
|
15
17
|
bind_to = 'tcp://127.0.0.1:5555'
|
16
18
|
message_size = 1
|
@@ -32,6 +34,8 @@ This gem comprises the ruby bindings for ZeroMQ
|
|
32
34
|
|
33
35
|
* The libzmq must be installed & loadable
|
34
36
|
|
37
|
+
* You _must_ configure the C language bindings for zeromq (build with --with-c) to get the zmq.h file into the appropriate place.
|
38
|
+
|
35
39
|
== INSTALL:
|
36
40
|
|
37
41
|
* gem install rb-zmq
|