some case I don't want execute before_update. please help me.

case A: in case I want used before_update

obj = Object.find(id)
obj.save

but case B I don't want used before_update

obj = Object.find(id)
obj.save # in case I want used before_update
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

update_without_callbacks and create_without_callbacks are private methods. These methods will not call any callbacks.

obj = Object.find(id)
obj.send(:update_without_callbacks)

obj = Object.new(:name => 'foo')
obj.send(:create_without_callbacks)
link|improve this answer
great. thanks you – khanh Oct 22 '10 at 4:22
1  
Don't do this! There is a reason why these methods are private. You should never rely on internal API or your application won't work in case of internal refactoring. – Simone Carletti Oct 22 '10 at 8:05
feedback

The method #save accepts a Hash of option. To skip validations:

obj.save(:validate => false)

This is the documented way to skip validations using the public API. Don't try to use send to call internal methods or your application might not work in the future.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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