From: Farrel Lifson Date: 2008-02-25T07:43:20+09:00 Subject: Re: Suprising behaviour with "def property=" method On 25/02/2008, Farrel Lifson wrote: > I had a bit of a surprise with the following > > class Foo > def bar(value) > @bar = value.upcase > end > end And of course the method should be def bar=(value) @bar = value.upcase end