Method: AsProject::FCSH#initialize

Defined in:
lib/tasks/fcsh.rb

#initialize(name = :fcsh, ip = nil, port = nil) ⇒ FCSH

Returns a new instance of FCSH.



14
15
16
17
18
# File 'lib/tasks/fcsh.rb', line 14

def initialize(name=:fcsh, ip=nil, port=nil)
  @ip = (ip.nil?) ? "127.0.0.1" : ip
  @port = (port.nil?) ? 20569 : port
  super(name)
end