Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

is there a way to get or list all available classes?

1 view
Skip to first unread message

Daniel Schüle

unread,
Nov 30, 2005, 5:29:58 PM11/30/05
to
Hello,

topic says it all
for example irb knows many classes like Dir, File, Process, Thread ..
can I somehow list them, maybe the are kept in some array ..
if it's possible, can additional classes provided through
require "foo"
be listet too?

I hope my question is clear
thanks in advance

Regards, Daniel

Wayne Vucenic

unread,
Nov 30, 2005, 6:02:37 PM11/30/05
to
Hi Daniel,

Try this:

C:\>irb
irb(main):001:0> ObjectSpace.each_object(Class) {|c| p c}
Gem::SourceIndex
OpenSSL::Digest::SHA1
OpenSSL::Digest::SHA
Gem::ConsoleUI
OpenSSL::Digest::RIPEMD160
Gem::StreamUI
..etc...etc...etc


Wayne Vucenic
No Bugs Software
Ruby and C++ Agile Contract Programming in Silicon Valley

Timothy Hunter

unread,
Nov 30, 2005, 5:59:18 PM11/30/05
to
classes = []
ObjectSpace.each_object {|obj| classes << obj if obj.class == Class}
classes = classes.sort_by {|cls| cls.inspect}
puts classes

Robert Klemme

unread,
Dec 1, 2005, 5:03:22 AM12/1/05
to
Wayne Vucenic wrote:
> Hi Daniel,
>
> Try this:
>
> C:\>irb
> irb(main):001:0> ObjectSpace.each_object(Class) {|c| p c}
> Gem::SourceIndex
> OpenSSL::Digest::SHA1
> OpenSSL::Digest::SHA
> Gem::ConsoleUI
> OpenSSL::Digest::RIPEMD160
> Gem::StreamUI
> ..etc...etc...etc

Note, that all approaches using ObjectSpace list only classes known to the
interpreter at this moment. There might be more classes whose files
haven't been required / loaded yet. You won't see them. Also, additional
classes may be generated dynamically.

Kind regards

robert

David Vallner

unread,
Dec 3, 2005, 4:45:54 AM12/3/05
to
A slightly more hackish solution I think that might also work with
autoloads (way too early in the morning to go and code it), is to use
#constants, eval those, select the ones that are classes, recurse,
rinse, repeat. Mind you, this is potentially a much worse resource hog
than the ObjectSpace approach.

David Vallner


Robert Evans

unread,
Dec 4, 2005, 6:07:47 PM12/4/05
to
Hi,

Not sure exactly which list of "classes available" you want, but if
you wanted to know all the classes available to the interpreter to
load, then you could conceivably iterate the directories in $:, the
load path, and look at all .rb files in them and their subdirectories
and parse them for the classes that they define.

Bob

Gene Tani

unread,
Dec 4, 2005, 7:42:23 PM12/4/05
to

right, and immediate values are kind of important:Fixnum, Symbol,
TrueClass, FalseClass, NilClass ;-p}

0 new messages