Top Level Namespace

Defined Under Namespace

Modules: EventMachine, OverSIP, Process

Instance Method Summary collapse

Instance Method Details

#sys(cmd) ⇒ Object



5
6
7
8
9
10
11
# File 'ext/stud/extconf.rb', line 5

def sys(cmd)
  puts "system command:  #{cmd}"
  unless ret = xsystem(cmd)
    raise "system command `#{cmd}' failed"
  end
  ret
end