about summary refs log tree commit homepage
path: root/t/t0401-em-async-tailer.sh
DateCommit message (Collapse)
2013-02-01tests: replace non-portable "date +%s" with ruby equivalent
"date +%s" is not in POSIX (it is in GNU, and at least FreeBSD 9.0, possibly earlier). The Ruby equivalent should be sufficiently portable between different Ruby versions. This change was automated via: perl -i -p -e 's/date \+%s/unix_time/' t/*.sh
2010-05-03t0401: do not leave lingering tail(1) processes
Since Rainbows! allows for graceful termination, let EM kill and reap the tail(1) processes it spawned.
2009-12-30EventMachine: support deferrables in responses
Some async apps rely on more than just "async.callback" and make full use of Deferrables provided by the EM::Deferrable module. Thanks to James Tucker for bringing this to our attention.