Method: FCS::Config#reset

Defined in:
lib/fcs/config.rb

#resetObject

Reset all configuration options to defaults



48
49
50
51
52
53
54
55
# File 'lib/fcs/config.rb', line 48

def reset
  self.remote_host  = DEFAULT_REMOTE_HOST
  self.remote_port  = DEFAULT_REMOTE_PORT
  self.local_host   = DEFAULT_LOCAL_HOST
  self.local_port   = DEFAULT_LOCAL_PORT
  self.auto_connect = DEFAULT_AUTO_CONNECT
  self
end