How can I take a regular Ruby script I have in my text editor (and saved to a file in the FS)
and then evaluate it inside an already-running Ruby process with its existing objects?
I should be able to run my script, with the ObjectSpace of the existing Ruby process accessible to it, then terminate my script while the ruby process continues to run, edit my script, and re-run it in the same Ruby process, again and again.
Is there a common computer science term that refers to this?