mojombo / bertrpc
- Source
- Commits
- Network (4)
- Issues (0)
- Downloads (16)
- Wiki (1)
- Graphs
-
Tag:
v0.1.0
bertrpc /
| name | age | message | |
|---|---|---|---|
| |
.document | Mon May 18 19:33:40 -0700 2009 | |
| |
.gitignore | Mon May 18 19:24:30 -0700 2009 | |
| |
LICENSE | Mon May 18 19:24:30 -0700 2009 | |
| |
README.md | ||
| |
Rakefile | Mon May 18 19:48:41 -0700 2009 | |
| |
VERSION | ||
| |
bertrpc.gemspec | ||
| |
lib/ | ||
| |
test/ |
README.md
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.calc.add.call(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.

