From: Michael Neumann Date: 2004-10-27T08:23:34+09:00 Subject: Re: [ANN] New RCRchive is open On Wed, Oct 27, 2004 at 08:10:53AM +0900, David Heinemeier Hansson wrote: > >I am very pleased to announce the opening of the new, rewritten > >RCRchive, still at http://www.rcrchive.net. The new RCRchive > >is a complete rewrite in Rails. > > This is the second major Ruby community site you've moved to Rails. I'm > deeply honored, David. Please continue your excellent work. It's so > motivating and inspiring to see how fast you've adopted Rails and the > great stuff you're putting out with it. > > Now I wonder if it's time for my first, probably ill-conceived, RCR. I > hate how @person.manager? ? "This is him" : "Not him" looks. It would I think, it's easier to write: @person.is_manager ? "This is him" : .... or if @person.is_manager? then "blah" else "blah" end Regards, Michael