i use a short program for methods... #### info = String #(or whatever) puts "Methods:" puts info.methods.sort puts puts "Instance Methods:" puts info.instance_methods.sort #### if you don't require anything, this should only give you the ruby methods.... - j -- Posted via http://www.ruby-forum.com/.