# File lib/session.rb, line 255 def __fork(*a, &b) verbose = $VERBOSE begin $VERBOSE = nil Kernel::fork(*a, &b) ensure $VERBOSE = verbose end end