From 4473d2fea2610a77277dbf8cd4710f48a07edd8f Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 10 Aug 2014 02:41:03 +0000 Subject: sample: use IO::NULL * sample/cgi-session-pstore.rb: use IO::NULL instead of hard coded device name for portability. * sample/drb/ring_place.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- sample/drb/ring_place.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sample/drb/ring_place.rb') diff --git a/sample/drb/ring_place.rb b/sample/drb/ring_place.rb index 0ceef7c65a..11c6c2fe80 100644 --- a/sample/drb/ring_place.rb +++ b/sample/drb/ring_place.rb @@ -18,8 +18,8 @@ if $DEBUG puts DRb.uri DRb.thread.join else - STDIN.reopen('/dev/null') - STDOUT.reopen('/dev/null', 'w') - STDERR.reopen('/dev/null', 'w') + STDIN.reopen(IO::NULL) + STDOUT.reopen(IO::NULL, 'w') + STDERR.reopen(IO::NULL, 'w') DRb.thread.join end -- cgit v1.2.3