diff options
author | Xavier Noria <fxn@hashref.com> | 2010-10-14 23:15:23 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-10-14 23:15:23 +0200 |
commit | 13f7f89bda503ccb1abc8dc78fbe36c44d902c49 (patch) | |
tree | 5359a0c9b0d21e4b1b2e44239db6457b6e21c4e5 /activerecord | |
parent | 01ab6f961bff150d50c99f03fa3946f48ac29b17 (diff) | |
parent | cfb1ba023b11f82d776f9744ddbe7c826c8d7fbc (diff) | |
download | rails-13f7f89bda503ccb1abc8dc78fbe36c44d902c49.tar.gz rails-13f7f89bda503ccb1abc8dc78fbe36c44d902c49.tar.bz2 rails-13f7f89bda503ccb1abc8dc78fbe36c44d902c49.zip |
Merge branch 'master' of git://github.com/lifo/docrails
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/callbacks.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb index 49671a1042..47428cfd0f 100644 --- a/activerecord/lib/active_record/callbacks.rb +++ b/activerecord/lib/active_record/callbacks.rb @@ -218,16 +218,6 @@ module ActiveRecord # needs to be aware of it because an ordinary +save+ will raise such exception # instead of quietly returning +false+. # - # == Debugging callbacks - # - # To list the methods and procs registered with a particular callback, append <tt>_callback_chain</tt> to - # the callback name that you wish to list and send that to your class from the Rails console: - # - # >> Topic.after_save_callback_chain - # => [#<ActiveSupport::Callbacks::Callback:0x3f6a448 - # @method=#<Proc:0x03f9a42c@/Users/foo/bar/app/models/topic.rb:43>, kind:after_save, identifiernil, - # options{}] - # module Callbacks extend ActiveSupport::Concern |