Sha256: b1eccd2ae1bf072fd55cedfbe799cc44b2fc97856e0d8ab0a89ec9cb2e0c3595
Contents?: true
Size: 448 Bytes
Versions: 5
Compression:
Stored size: 448 Bytes
Contents
$: << File.expand_path(File.dirname(__FILE__)) require 'protocol/spec' require 'protocol/protocol' require 'transport/buffer' require 'transport/frame' require '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
5 entries across 5 versions & 3 rubygems
Version | Path |
---|---|
celldee-bunny-0.4.0 | lib/qrack/qrack.rb |
celldee-bunny-0.4.1 | lib/qrack/qrack.rb |
fotonauts-bunny-0.4.0 | lib/qrack/qrack.rb |
bunny-0.4.1 | lib/qrack/qrack.rb |
bunny-0.4.0 | lib/qrack/qrack.rb |