On 7/24/07, James Edward Gray II <james / grayproductions.net> wrote: > > >> Object.constants.grep("Test") > => [] > >> class Test; end > => nil > >> Object.constants.grep("Test") > => ["Test"] > >> Object.send(:remove_const, "Test") > => Test > >> Object.constants.grep("Test") > => [] > > Hope that helps. > > James Edward Gray II > Ah. I forgot about Object#send. Thanks, James. Todd