Sha256: 49321391eabd1c70e0f8dbe842a1a09a1c15b3d3adf793a818135d94f074d733

Contents?: true

Size: 536 Bytes

Versions: 1

Compression:

Stored size: 536 Bytes

Contents

# encoding: utf-8
# (c) 2011 Martin Kozák (martinkozak@martinkozak.net)

require "qrpc/protocol/abstract"

##
# General QRPC module.
#

module QRPC
    
    ##
    # Protocols helper module.
    # @since 0.9.0
    #
    
    module Protocol

        ##
        # JSON-RPC protocol implementation.
        # @since 0.9.0
        #
        
        class JsonRpc < Abstract
        end
               
    end
end

require "qrpc/protocol/json-rpc/error"
require "qrpc/protocol/json-rpc/request"
require "qrpc/protocol/json-rpc/response"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
qrpc-0.9.0 lib/qrpc/protocol/json-rpc.rb