Module: UnixSocks

Defined in:
lib/unix_socks.rb,
lib/unix_socks/version.rb

Overview

Provides classes for handling inter-process communication via Unix 🧦🧦. Supports dynamic message handling, background processing, and robust error management.

Defined Under Namespace

Classes: Message, Server

Constant Summary collapse

VERSION =

UnixSocks version

'0.0.1'
VERSION_ARRAY =

:nodoc:

VERSION.split('.').map(&:to_i)
VERSION_MAJOR =

:nodoc:

VERSION_ARRAY[0]
VERSION_MINOR =

:nodoc:

VERSION_ARRAY[1]
VERSION_BUILD =

:nodoc:

VERSION_ARRAY[2]