From: "Florian Groß" Date: 2005-12-01T01:40:55+09:00 Subject: Re: How to properly debug? miriamraphael@yahoo.com wrote: > I am writing my first rails script and am having lots of trouble doing > the simplest tasks. > Right now, I have a form (new.rhtml) and it allows someone to become a > new user by entering their info (username, password, name, etc). Use .save! instead of .save. .save returns false on failure, .save! raises an Exception.