jimson icon indicating copy to clipboard operation
jimson copied to clipboard

JSON-RPC 2.0 client and server for Ruby

Results 3 jimson issues
Sort by recently updated
recently updated
newest added

So, I've been playing with a Counterparty json-rpc server (for reference, don't look too hard at it: http://counterpartyd.readthedocs.org/en/latest/API.html) and it returned me an error everytime I tried to make a...

Today, I cannot use a module as a handler: ``` module MyModule extend Jimson::Handler def sum(a, b) a + b end end server = Jimson::Server.new(MyHandler) ``` The reason this fails...

HTTP keepalive would be nice.