summaryrefslogtreecommitdiff
path: root/sample/drb/ring_place.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-10 02:41:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-10 02:41:03 +0000
commit4473d2fea2610a77277dbf8cd4710f48a07edd8f (patch)
tree32df9a6769a1982a94b5973334741637e95686b9 /sample/drb/ring_place.rb
parent22cbb7e8d3c6f24ceb6d623ba5b638ee37d3f9b8 (diff)
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
Diffstat (limited to 'sample/drb/ring_place.rb')
-rw-r--r--sample/drb/ring_place.rb6
1 files changed, 3 insertions, 3 deletions
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