aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorSteven Yang <yangchenyun@gmail.com>2013-06-30 17:53:11 +0800
committerSteven Yang <yangchenyun@gmail.com>2013-06-30 17:53:11 +0800
commit49fd826042d2278c69a5b66eecbe896bc7908441 (patch)
tree869280862d771cc6d3c6b2bc472ef2929775d19b /activesupport/lib/active_support
parent4eedb3928e5555e9d766f7c92637a6341c461efb (diff)
downloadrails-49fd826042d2278c69a5b66eecbe896bc7908441.tar.gz
rails-49fd826042d2278c69a5b66eecbe896bc7908441.tar.bz2
rails-49fd826042d2278c69a5b66eecbe896bc7908441.zip
updated AS:Callbacks doc for terminator option in define_callbacks method
The change is commited at ba552764344bc0a3c25b8576ec11f127ceaa16da
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/callbacks.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index 2cffa342ef..fb16c17936 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -658,10 +658,11 @@ module ActiveSupport
#
# * <tt>:terminator</tt> - Determines when a before filter will halt the
# callback chain, preventing following callbacks from being called and
- # the event from being triggered. This is a string to be eval'd. The
- # result of the callback is available in the +result+ variable.
+ # the event from being triggered. This should be a lambda to be executed.
+ # The current object and the return result of the callback will be called
+ # with the lambda.
#
- # define_callbacks :validate, terminator: 'result == false'
+ # define_callbacks :validate, terminator: ->(target,result) { result == false },
#
# In this example, if any before validate callbacks returns +false+,
# other callbacks are not executed. Defaults to +false+, meaning no value