module ActiveRecord::Callbacks::ClassMethods
Public Instance Methods
Registers a callback to be called after a record is created. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 370
Registers a callback to be called after a record is destroyed. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 418
Registers a callback to be called after a record is instantiated via a finder. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 314
Registers a callback to be called after a record is instantiated. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 306
Registers a callback to be called after a record is saved. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 346
Registers a callback to be called after a record is touched. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 322
Registers a callback to be called after a record is updated. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 394
Registers a callback to be called around the creation of a record. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 362
Registers a callback to be called around the destruction of a record. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 410
Registers a callback to be called around the save of a record. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 338
Registers a callback to be called around the update of a record. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 386
Registers a callback to be called before a record is created. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 354
Registers a callback to be called before a record is destroyed. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 402
Registers a callback to be called before a record is saved. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 330
Registers a callback to be called before a record is updated. See ActiveRecord::Callbacks
for more information.
# File lib/active_record/callbacks.rb, line 378