Top Level Namespace
Defined Under Namespace
Modules: EventMachine, OverSIP
Instance Method Summary collapse
Instance Method Details
#log(message) ⇒ Object
6 7 8 |
# File 'ext/stud/extconf.rb', line 6 def log() puts "[ext/stud/extconf.rb] #{}" end |
#sys(cmd) ⇒ Object
11 12 13 14 15 16 17 |
# File 'ext/stud/extconf.rb', line 11 def sys(cmd) log "executing system command: #{cmd}" unless ret = xsystem(cmd) raise "[ext/stud/extconf.rb] system command `#{cmd}' failed" end ret end |