From 49fd826042d2278c69a5b66eecbe896bc7908441 Mon Sep 17 00:00:00 2001 From: Steven Yang Date: Sun, 30 Jun 2013 17:53:11 +0800 Subject: updated AS:Callbacks doc for terminator option in define_callbacks method The change is commited at ba552764344bc0a3c25b8576ec11f127ceaa16da --- activesupport/lib/active_support/callbacks.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'activesupport/lib/active_support') 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 # # * :terminator - 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 -- cgit v1.2.3