This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.
replace_or_append!(chain)
TODO: Decompose into more Array like behavior
# File activesupport/lib/active_support/callbacks.rb, line 100 def replace_or_append!(chain) if index = index(chain) self[index] = chain else self << chain end self end