1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
nobu 2014-08-10 02:41:03 +00:00
parent 22cbb7e8d3
commit 4473d2fea2
2 changed files with 4 additions and 4 deletions

View file

@ -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'}

View file

@ -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