# coding:utf-8 # License:: MIT # Author:: Alexander Schrode( MailTo:: midix01@googlemail.de) # = RAW JSON RPC # The rawjsonrpc libary implements base classes / modules to write jsonrpc or # servers. So that you can easly implments for your stream type with minmal # efford. # Also it provides a TCP client and two TCP Servers. # Feel free to provid your implmentations to the project. module RawJsonRpc # :nodoc: VERSION = "0.0.1"# :nodoc: end require_relative 'rawjsonrpc/error' require_relative 'rawjsonrpc/server' require_relative 'rawjsonrpc/client'