README.md in mojombo-ernie-0.1.0 vs README.md in mojombo-ernie-0.2.0

- old
+ new

@@ -24,12 +24,12 @@ Running ------- Usage: ernie [options] <handler> - -n, --name NAME Node name -p, --port PORT Port + -n, --number NUMBER Number of handler instances -d, --detached Run as a daemon -P, --pidfile PIDFILE Location to write pid file. Example Handler @@ -48,9 +48,21 @@ --------------------------------------- -> {call, calc, add, [1, 2]} <- {reply, 3} + + +Using the BERTRPC gem to make calls to Ernie +-------------------------------------------- + +You can make BERT-RPC calls from Ruby with the [BERTRPC gem](http://github.com/mojombo/bertrpc): + + require 'bertrpc' + + svc = BERTRPC::Service.new('localhost', 8000) + svc.calc.add.call(1, 2) + # => 3 Contribute ---------- \ No newline at end of file