instance method
around
Ruby on Rails 5.0.7.2
Since v4.1.16 Last seen in v5.0.7.2Signature
around(&around)
No documentation comment.
Parameters
-
aroundblock
Source
# File activesupport/lib/active_support/callbacks.rb, line 445
def around(&around)
CallbackSequence.new do |arg|
around.call(arg) {
self.call(arg)
}
end
end
Defined in activesupport/lib/active_support/callbacks.rb line 445
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Callbacks::CallbackSequence