diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2010-10-13 15:59:57 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2010-10-13 15:59:57 -0300 |
commit | aec5ef243a0c85a9e3bafa89ce873d3837a6ce59 (patch) | |
tree | 255693d0e22e27ac364ae901e5e4d7ce8298e1f8 /activerecord/lib | |
parent | 6f4d00c5a58214646ba3fe22fe55b2a257dbf992 (diff) | |
download | rails-aec5ef243a0c85a9e3bafa89ce873d3837a6ce59.tar.gz rails-aec5ef243a0c85a9e3bafa89ce873d3837a6ce59.tar.bz2 rails-aec5ef243a0c85a9e3bafa89ce873d3837a6ce59.zip |
Remove doc for debugging callbacks. Methods don't exist in Rails master
Diffstat (limited to 'activerecord/lib')
-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 |