Sha256: 049d07042836d94cae803979f5843445ddba90baa588ded01fa4f1a3c6a7391d
Contents?: true
Size: 454 Bytes
Versions: 4
Compression:
Stored size: 454 Bytes
Contents
$: << File.expand_path(File.dirname(__FILE__)) require 'protocol/spec' require 'protocol/protocol' require 'transport/buffer' require 'transport/frame' require 'qrack/client' module Qrack include Protocol include Transport # Errors class BufferOverflowError < StandardError; end class InvalidTypeError < StandardError; end # Qrack version number VERSION = '0.0.1' # Return the Qrack version def self.version VERSION end end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
celldee-bunny-0.4.2 | lib/qrack/qrack.rb |
celldee-bunny-0.4.3 | lib/qrack/qrack.rb |
bunny-0.4.3 | lib/qrack/qrack.rb |
bunny-0.4.2 | lib/qrack/qrack.rb |