2015-09-13 16:06:36 by Takahiro Kambe | Files touched by this commit (2) |
Log message: Update ruby-timers to 4.1.1. 4.1.1 (2015-08-21) ------------------ * Remove `RubyProf` from Gemfile and a test, due to it providing no substantial \ benefit while increasing problems building bundles under Rubinius. 4.1.0 (2015-08-16) ------------------ * Addition of `now_and_every` method; fires block immediately, then sets \ recurring timer. * Includes `now_and_after` method; does the same as above for one-shot timers: \ essentially a "two-shot" timer. |
2015-03-13 14:28:23 by Takahiro Kambe | Files touched by this commit (4) |
Log message: Add ruby-timers package version 4.0.1. Ruby timer collections. Schedule several procs to fire after configurable delays or at periodic intervals. This gem is especially useful when you are faced with an API that accepts a single timeout but you want to run multiple timers on top of it. An example of such a library is [nio4r](https://github.com/celluloid/nio4r), a cross-platform Ruby library for using system calls like epoll and kqueue. |