From: Yukihiro Matsumoto Date: 2007-07-05T23:32:28+09:00 Subject: Re: Destroy object from memory.. Object.const_destroy? Hi, In message "Re: Destroy object from memory.. Object.const_destroy?" on Thu, 5 Jul 2007 03:56:01 +0900, Aaron Smith writes: |If I'm instantiating a instance of a class at using Object.const_get. |How can I destroy it so that next time it reloads and code changes will |take effect? I am not sure what you mean here. You don't instantiate anything using const_get. You just get the reference to the existing object. If you want to redefine class objects (without warning), you remove the constant using remove_const(), and reload the program using load(). But I'd recommend restarting the program, unless reloading is absolutely necessary. matz.