class Apiotics::Configuration
Attributes
handshake[RW]
local_logging[RW]
local_port[RW]
parents[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/apiotics/configuration.rb, line 6 def initialize @public_key = nil @private_key = nil @local_logging = false @targets = nil @local_port = 8001 @server = "rgs.microarx.com" @server_port = 8000 @portal = "https://test.apiotics.com/" @push = false @tls = true @verify_peer = true @handshake = true @parents = {} end