=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== ruby-concurrent-1.1.6+dfsg/CHANGELOG.md-453-* Added gem-level [configuration](http://robots.thoughtbot.com/mygem-configure-block) ruby-concurrent-1.1.6+dfsg/CHANGELOG.md:454:* Deprecated `$GLOBAL_THREAD_POOL` in lieu of gem-level configuration ruby-concurrent-1.1.6+dfsg/CHANGELOG.md-455-* Removed support for Ruby [1.9.2](https://www.ruby-lang.org/en/news/2013/12/17/maintenance-of-1-8-7-and-1-9-2/) ############################################## ruby-concurrent-1.1.6+dfsg/docs-source/promises.in.md-103- ruby-concurrent-1.1.6+dfsg/docs-source/promises.in.md:104:Which is the same as `future.value! rescue $!` which will be used hereafter. ruby-concurrent-1.1.6+dfsg/docs-source/promises.in.md-105- ############################################## ruby-concurrent-1.1.6+dfsg/docs-source/promises.out.md-138- ruby-concurrent-1.1.6+dfsg/docs-source/promises.out.md:139:Which is the same as `future.value! rescue $!` which will be used hereafter. ruby-concurrent-1.1.6+dfsg/docs-source/promises.out.md-140- ############################################## ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/promise.rb-107- # parent (by the time a child is created its parent may have completed ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/promise.rb:108: # execution and changed state). Despite being asynchronous, however, the order ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/promise.rb-109- # of execution of Promise objects in a chain (or tree) is strictly defined. ############################################## ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/timer_task.rb-22- # When a `TimerTask` is launched it starts a thread for monitoring the ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/timer_task.rb:23: # execution interval. The `TimerTask` thread does not perform the task, ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/timer_task.rb-24- # however. Instead, the TimerTask launches the task on a separate thread. ############################################## ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/timer_task.rb-37- # In some cases it may be necessary for a `TimerTask` to affect its own ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/timer_task.rb:38: # execution cycle. To facilitate this, a reference to the TimerTask instance ruby-concurrent-1.1.6+dfsg/lib/concurrent-ruby/concurrent/timer_task.rb-39- # is passed as an argument to the provided block every time the task is