Craig Demyanovich wrote: > You should use validates_inclusion_of. See: > > http://www.railsbrain.com/api/rails-2.2.2/doc/index.html?a=M001821&name=validates_presence_of > > Regards, > Craig > > On Mon, Jan 12, 2009 at 5:53 PM, Taylor Strait <
Doh. I searched google and ruby-forum, but who would have thought to look in the API docs: "If you want to validate the presence of a boolean field (where the real values are true and false), you will want to use validates_inclusion_of :field_name, :in => [true, false] This is due to the way Object#blank? handles boolean values. false.blank? # => true" Thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

