method
callback
v2.1.0 -
Show latest stable
- Class:
ActiveRecord::Callbacks
callback(method)private
No documentation available.
# File activerecord/lib/active_record/callbacks.rb, line 295
def callback(method)
notify(method)
result = run_callbacks(method) { |result, object| result == false }
if result != false && respond_to_without_attributes?(method)
result = send(method)
end
return result
end