I need a way to globally determine whether a class exists (i.e. whether the corresponding file has been loaded). For example, let's say over in file A, class "ABC" is defined with some class methods. file B needs to use the methods of class ABC, but since the files are in different directories, I don't want to use a require statement. How can I check whether the class ABC even exists without a begin/rescue statement?