summaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
Diffstat (limited to 'sample')
-rw-r--r--sample/cgi-session-pstore.rb2
-rw-r--r--sample/drb/ring_place.rb6
2 files changed, 4 insertions, 4 deletions
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