Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a "custom" validation method that I only want executed on create like:

validate :post_count, :on => :create

def post_count
     # validate stuff
end  

but it gets fired on update (in addition to on create).

Does the :on => :create symbol not work with "custom" validation methods?

THanks!

share|improve this question

2 Answers

up vote 12 down vote accepted

As far as I know, there's no :on option. Use

validate_on_create :post_count

instead. And there's validate_on_update also. You can read about this methods here.

share|improve this answer
That's odd, i was sure :on existed... hmmm – thomasfedb Jun 19 '10 at 8:14
6  
There is, validate_on_create is actually deprecated, DEPRECATION WARNING validate_on_create is deprecated. Please use validate(args, :on => :create) – Gunner Jul 20 '11 at 22:04
j. answers one again! Thanks! – Trip Jul 27 '11 at 15:59

This may be a Rails 2.x vs. Rails 3 issue but according to the Rails Guides on Validation the :on option is definitely valid (though I am fighting with why it's not firing for me in a similar way).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.