Method: RMTools.tick_while

Defined in:
lib/rmtools/console/printing.rb

.tick_whileObject



57
58
59
60
61
62
# File 'lib/rmtools/console/printing.rb', line 57

def tick_while
  ticker = thread {loop {RMTools::tick!}}
  res = yield
  ticker.kill
  res
end