From: Brian Adkins Date: 2009-05-16T05:35:02+09:00 Subject: Re: obj.attr(qualifier) = value -- possible? Michael Schuerig writes: > I want to write a method that can be called like this > > obj.attr(qualifier) = value > > So far, I don't see how to achieve this. Me neither. And the following: obj = Foo.new obj.attr(qualifier).assign(value) seems inferior to: obj.attr_assign(qualifier, value) -- Brian Adkins http://lojic.com/