From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 4A0021F6BA for ; Thu, 23 Mar 2017 02:44:33 +0000 (UTC) From: Eric Wong To: raindrops-public@bogomips.org Subject: [PATCH] aggregate/pmq: update version numbers for Ruby and Linux Date: Thu, 23 Mar 2017 02:44:33 +0000 Message-Id: <20170323024433.4036-1-e@80x24.org> List-Id: Linux is in the 4.x and Ruby is into the 2.x range, by now, so try to get with the times. --- lib/raindrops/aggregate/pmq.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/raindrops/aggregate/pmq.rb b/lib/raindrops/aggregate/pmq.rb index 98d4169..8623cb1 100644 --- a/lib/raindrops/aggregate/pmq.rb +++ b/lib/raindrops/aggregate/pmq.rb @@ -6,7 +6,7 @@ require "thread" require "stringio" -# \Aggregate + POSIX message queues support for Ruby 1.9 and \Linux +# \Aggregate + POSIX message queues support for Ruby 1.9+ and \Linux # # This class is duck-type compatible with \Aggregate and allows us to # aggregate and share statistics from multiple processes/threads aided @@ -14,8 +14,8 @@ # Raindrops::LastDataRecv Rack application, but can be used independently # on compatible Runtimes. # -# Unlike the core of raindrops, this is only supported on Ruby 1.9 and -# Linux 2.6. Using this class requires the following additional RubyGems +# Unlike the core of raindrops, this is only supported on Ruby 1.9+ and +# Linux 2.6+. Using this class requires the following additional RubyGems # or libraries: # # * aggregate (tested with 0.2.2) -- EW