From: Phrogz Date: 2007-01-26T09:25:06+09:00 Subject: Re: Ruby language question On Jan 25, 5:17 pm, Neville Franks wrote: > Would you expect to see the method listed as: size= in a Class Viewer or > just size ? The former, as Ruby does it: irb(main):001:0> class Foo; def a=( b ); end; end => nil irb(main):002:0> Foo.instance_methods(false) => ["a="]