aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/rinda/tuplespace.rb1
-rw-r--r--test/pathname/test_pathname.rb1
3 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d0a73ef9e7..902e9a0db0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jul 17 09:58:32 2015 Eric Wong <e@80x24.org>
+
+ * lib/rinda/tuplespace.rb: remove enumerator require
+ * test/pathname/test_pathname.rb: ditto
+
Fri Jul 17 05:33:58 2015 Eric Wong <e@80x24.org>
* iseq.c (rb_iseq_compile_with_option): reuse result of previous
diff --git a/lib/rinda/tuplespace.rb b/lib/rinda/tuplespace.rb
index 11532fd161..14cae9ebed 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 b012633a8c..94f0e3662f 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