Re: [MacRuby-devel] macruby singleton_methods

2011-05-11 Thread Eloy Duran
Yes you can compare MacRuby against 1.9.2. I *think* the best would be to compare against 1.9 trunk, but Laurent might have to correct me on that. So yes, please file a ticket for this issue :) On Wed, May 11, 2011 at 1:24 PM, anoiaque wrote: > Hi, > > Suppose:  class User; def self.all;end end

[MacRuby-devel] macruby singleton_methods

2011-05-11 Thread anoiaque
Hi, Suppose: class User; def self.all;end end With Ruby 1.8, and 1.9.2 interpreters User.singleton_methods #=> [:all] With Macruby you get []. Normal ? Is it an issue to add ? Can we interpret 1.9.2 code with macruby and expect the same result ? Thanks. _