diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-10-20 15:04:00 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-10-20 15:04:00 -0200 |
commit | d68e81afa0e5b2697755a34e9b1d11b9b5d1df9d (patch) | |
tree | 6d97bd8c322e1923f823c57b8452e6d839e31c80 /activesupport/lib/active_support/callbacks.rb | |
parent | 857263445035404786e1f9785b76f3f4ddb7ca12 (diff) | |
parent | cd50eefdc5e2b795150ccd2a115672ae09dd17a8 (diff) | |
download | rails-d68e81afa0e5b2697755a34e9b1d11b9b5d1df9d.tar.gz rails-d68e81afa0e5b2697755a34e9b1d11b9b5d1df9d.tar.bz2 rails-d68e81afa0e5b2697755a34e9b1d11b9b5d1df9d.zip |
Merge pull request #21858 from Gaurav2728/protected_method_nodoc
nodoc for active support protected method [CI skip]
Diffstat (limited to 'activesupport/lib/active_support/callbacks.rb')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 252374e817..d43fde03a9 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -748,15 +748,15 @@ module ActiveSupport protected - def get_callbacks(name) + def get_callbacks(name) # :nodoc: send "_#{name}_callbacks" end - def set_callbacks(name, callbacks) + def set_callbacks(name, callbacks) # :nodoc: send "_#{name}_callbacks=", callbacks end - def deprecated_false_terminator + def deprecated_false_terminator # :nodoc: Proc.new do |target, result_lambda| terminate = true catch(:abort) do |