Sha256: a0a0d2b9916260897e3c40f546cac21740c0223a2f49302ab064aa993a30ec82

Contents?: true

Size: 694 Bytes

Versions: 2

Compression:

Stored size: 694 Bytes

Contents

BERTRPC
=======

By Tom Preston-Werner (tom@mojombo.com)

WARNING: This software is alpha and should not be used in production without
extensive testing. You should not consider this project production ready until
it is released as 1.0.


Description
-----------

BERTRPC is a Ruby BERT-RPC client library.


Installation
------------

    gem install mojombo-bertrpc -s http://gems.github.com


Example
-------

    require 'bertrpc'
    
    svc = BERTRPC::Service.new('localhost', 9999)
    svc.call.calc.add(1, 2)
    # => 3

This generates a BERT-RPC request like so:

    -> {call, calc, add, [1, 2]}


Copyright
---------

Copyright (c) 2009 Tom Preston-Werner. See LICENSE for details.

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
mojombo-bertrpc-0.2.0 README.md
bertrpc-0.2.0 README.md