From: Roger Pack Date: 2009-10-08T06:02:52+09:00 Subject: Re: Does Ruby have a 'which' like method > Is there a way I can find the module or string.rb which defined the > length() method? In 1.9 (and REE?) it's >> p = '' >> p.method(:length).source_location That won't help if it's from a .c file, but will if it's from a .rb file. -r -- Posted via http://www.ruby-forum.com/.