Dharam Gollapudi
Dharam Gollapudi

Reputation: 6438

Ruby Class Constants

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

Answers (1)

newacct
newacct

Reputation: 122429

Class.constants?

Upvotes: 6

Related Questions