From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS62217 45.58.62.0/24 X-Spam-Status: No, score=-0.7 required=3.0 tests=BAYES_00,RCVD_IN_XBL, RDNS_NONE,URIBL_BLOCKED shortcircuit=no autolearn=no version=3.3.2 X-Original-To: spew@80x24.org Received: from 80x24.org (unknown [45.58.62.57]) by dcvr.yhbt.net (Postfix) with ESMTP id CF15B63633C for ; Thu, 16 Jul 2015 20:40:58 +0000 (UTC) From: Eric Wong To: spew@80x24.org Subject: [PATCH] remove unnecessary enumerator requires Date: Thu, 16 Jul 2015 20:40:57 +0000 Message-Id: <1437079257-24093-1-git-send-email-e@80x24.org> List-Id: * lib/rinda/tuplespace.rb: remove enumerator require * test/pathname/test_pathname.rb: ditto Related to https://bugs.ruby-lang.org/issues/10902 but not a complete fix. --- lib/rinda/tuplespace.rb | 1 - test/pathname/test_pathname.rb | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/rinda/tuplespace.rb b/lib/rinda/tuplespace.rb index 11532fd..14cae9e 100644 --- a/lib/rinda/tuplespace.rb +++ b/lib/rinda/tuplespace.rb @@ -2,7 +2,6 @@ require 'monitor' require 'thread' require 'drb/drb' require 'rinda/rinda' -require 'enumerator' require 'forwardable' module Rinda diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index b012633..94f0e36 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -3,7 +3,6 @@ require 'pathname' require 'fileutils' require 'tmpdir' -require 'enumerator' class TestPathname < Test::Unit::TestCase -- EW