Module: Chukan

Defined in:
lib/chukan.rb

Defined Under Namespace

Modules: Test Classes: LocalProcess, Remote, RemoteProcess, ZombieKiller

Constant Summary collapse

IO_BUFFER_LIMIT =
1024*1024

Instance Method Summary collapse

Instance Method Details

#remote(host, user = nil, key = nil) ⇒ Object



394
395
396
# File 'lib/chukan.rb', line 394

def remote(host, user = nil, key = nil)
	Remote.new(host, user, key)
end

#spawn(*cmdline, &block) ⇒ Object



390
391
392
# File 'lib/chukan.rb', line 390

def spawn(*cmdline, &block)
	LocalProcess.new(*cmdline, &block)
end