method
new
v5.0.0.1 -
Show latest stable
- Class:
ActiveSupport::Callbacks::CallbackChain
new(name, config)public
No documentation available.
# File activesupport/lib/active_support/callbacks.rb, line 467
def initialize(name, config)
@name = name
@config = {
scope: [:kind],
terminator: default_terminator
}.merge!(config)
@chain = []
@callbacks = nil
@mutex = Mutex.new
end