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:
parent
22cbb7e8d3
commit
4473d2fea2
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
require 'cgi'
|
require 'cgi'
|
||||||
require 'cgi/session/pstore'
|
require 'cgi/session/pstore'
|
||||||
|
|
||||||
STDIN.reopen("/dev/null")
|
STDIN.reopen(IO::NULL)
|
||||||
cgi = CGI.new
|
cgi = CGI.new
|
||||||
session = CGI::Session.new(cgi, 'database_manager' => CGI::Session::PStore)
|
session = CGI::Session.new(cgi, 'database_manager' => CGI::Session::PStore)
|
||||||
session['key'] = {'k' => 'v'}
|
session['key'] = {'k' => 'v'}
|
||||||
|
|
|
@ -18,8 +18,8 @@ if $DEBUG
|
||||||
puts DRb.uri
|
puts DRb.uri
|
||||||
DRb.thread.join
|
DRb.thread.join
|
||||||
else
|
else
|
||||||
STDIN.reopen('/dev/null')
|
STDIN.reopen(IO::NULL)
|
||||||
STDOUT.reopen('/dev/null', 'w')
|
STDOUT.reopen(IO::NULL, 'w')
|
||||||
STDERR.reopen('/dev/null', 'w')
|
STDERR.reopen(IO::NULL, 'w')
|
||||||
DRb.thread.join
|
DRb.thread.join
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue