From: Robert Klemme Date: 2007-10-26T18:08:19+09:00 Subject: Re: find all member in a class 2007/10/26, Pokkai Dokkai : > how to find all members list(member functions & member variables for all > access specifiers like public, private and protected) ? Do ruby -e 'puts String.methods.grep(/meth/)' and go from there. Kind regards robert