Reputation: 6438
In Ruby we can find out the class methods by Class.methods, instance methods by Class.instance_method, is there any methods that lists all the constants defined in a class?
Upvotes: 1
Views: 1156
Reputation: 122429
Class.constants?
Class.constants
Upvotes: 6