From: List Recv Date: 2006-01-16T10:29:06+09:00 Subject: Resetting ruby I'm looking for a fast way to "reset" Ruby. That is, to reset the interpreter back to a fresh state, or, even better, a fresh state + keeping some required ruby-gems. My goal is to make a continuos test runner, and avoid the overhead of having to restart ruby and require the gems each times. I could do this with fork (copy-on-write), except I want this to run on Win32 as well. Any ideas? -- Posted via http://www.ruby-forum.com/.