class Simbiotes::Configuration

Attributes

handshake[RW]
local_logging[RW]
local_port[RW]
portal[RW]
private_key[RW]
public_key[RW]
push[RW]
server[RW]
server_port[RW]
targets[RW]
tls[RW]
verify_peer[RW]

Public Class Methods

new() click to toggle source
# File lib/simbiotes/configuration.rb, line 6
def initialize
  @public_key = nil
  @private_key = nil
  @local_logging = true
  @targets = nil
  @local_port = 8001
  @server = "rgs.microarx.com"
  @server_port = 8000
  @portal = "https://www.simbiotes.com/"
  @push = false
  @tls = true
  @verify_peer = true
  @handshake = true
end