= private = protected
update(observed_method, object)
Send observed_method(object) if the method exists.
# File activerecord/lib/active_record/observer.rb, line 170 def update(observed_method, object) #:nodoc: send(observed_method, object) if respond_to?(observed_method) end