How do I check if a class is defined?
问题 How do I turn a string into a class name, but only if that class already exists? If Amber is already a class, I can get from a string to the class via: Object.const_get("Amber") or (in Rails) "Amber".constantize But either of these will fail with NameError: uninitialized constant Amber if Amber is not already a class. My first thought is to use the defined? method, but it doesn't discriminate between classes that already exist and those that don't: >> defined?("Object".constantize) => "method