Path: csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!feeder.news-service.com!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!talisker.lacave.net!lacave.net!not-for-mail From: 7stud -- Newsgroups: comp.lang.ruby Subject: Re: Calling to_enum on a MatchData object Date: Fri, 8 Apr 2011 14:41:17 -0500 Organization: Service de news de lacave.net Lines: 36 Message-ID: <0d13a1f47b5cfb398b7353d11d724f6f@ruby-forum.com> References: <840b7dcf34f7c1ae6b2b9d80a6b55b69@ruby-forum.com> NNTP-Posting-Host: bristol.highgroove.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: talisker.lacave.net 1302292150 42074 65.111.164.187 (8 Apr 2011 19:49:10 GMT) X-Complaints-To: abuse@lacave.net NNTP-Posting-Date: Fri, 8 Apr 2011 19:49:10 +0000 (UTC) In-Reply-To: <840b7dcf34f7c1ae6b2b9d80a6b55b69@ruby-forum.com> X-Received-From: This message has been automatically forwarded from the ruby-talk mailing list by a gateway at comp.lang.ruby. If it is SPAM, it did not originate at comp.lang.ruby. Please report the original sender, and not us. Thanks! For more details about this gateway, please visit: http://blog.grayproductions.net/categories/the_gateway X-Mail-Count: 381216 X-Ml-Name: ruby-talk X-Rubymirror: Yes X-Ruby-Talk: <0d13a1f47b5cfb398b7353d11d724f6f@ruby-forum.com> Xref: x330-a1.tempe.blueboxinc.net comp.lang.ruby:2545 By the way, one way to get a handle on which instance methods a class defines itself and which are inherited is like this: not_inherited = false puts MatchData.instance_methods(not_inherited).sort #'false' means don't display inherited methods --output:-- == [] begin captures end eql? hash inspect length names offset post_match pre_match regexp size string to_a to_s values_at Then to find to_enum() you need to look in parent classes and any modules that MatchData includes. -- Posted via http://www.ruby-forum.com/.