Skip to content

Instantly share code, notes, and snippets.

@vderyagin
Created September 8, 2011 04:58
Show Gist options
  • Save vderyagin/1202659 to your computer and use it in GitHub Desktop.
Save vderyagin/1202659 to your computer and use it in GitHub Desktop.
print names of all classes, that include Enumerable module
ObjectSpace.each_object(Class) do |klass|
puts klass.name if klass < Enumerable
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment