module ChaosKitty
Nested
Definitions
def self.endpoint(path = "chaos_kitty.ipc")
Get the chaos kitty IPC endpoint.
Signature
-
parameter
pathString The path for the Unix socket (default: "chaos_kitty.ipc").
-
returns
IO::Endpoint The Unix socket endpoint.
Implementation
def self.endpoint(path = "chaos_kitty.ipc")
::IO::Endpoint.unix(path)
end