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/cgi-session-pstore.rb | 2 +- sample/drb/ring_place.rb | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sample') diff --git a/sample/cgi-session-pstore.rb b/sample/cgi-session-pstore.rb index 99d7d479e2..ec8b4989d6 100644 --- a/sample/cgi-session-pstore.rb +++ b/sample/cgi-session-pstore.rb @@ -1,7 +1,7 @@ require 'cgi' require 'cgi/session/pstore' -STDIN.reopen("/dev/null") +STDIN.reopen(IO::NULL) cgi = CGI.new session = CGI::Session.new(cgi, 'database_manager' => CGI::Session::PStore) session['key'] = {'k' => 'v'} 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