On Tue, Dec 13, 2011 at 8:16 PM, Jim Ruther Nill <jvn...@gmail.com> wrote:

>
> while this may work in your case, you should remember the following (a
> shameless copy
> and paste from the api)
>
>  Finally, the options :if, :unless, :on, :allow_blank and :allow_nil can
> be given to one specific validator, as a hash:
>
> validates :password, :presence => { :if => :password_required? }, 
> :confirmation => true
>
> Or to all at the same time:
>
> validates :password, :presence => true, :confirmation => true, :if => 
> :password_required?
>
>
> one more thing.  I find it cleaner to do what you need like this
>
> validates :score, :presence => {:if => :static?}
>
> def static?
>   #code here
> end
>
> def example?
>   #code here
> end
>
> Cheers!
>


Thank! that's what I found on api, but I wasnt sure if it was the best way
of doing that (and by that I mean the easier way to do that "filter")

I'll try what you mention because I wasn't sure enough
what":password_required?" mean ( I tought it was a sort of helper... :) )

Javier Q

-- 
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 rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to