method

build

Importance_0
build(chain, filter, kind, options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/callbacks.rb, line 297
      def self.build(chain, filter, kind, options)
        if filter.is_a?(String)
          ActiveSupport::Deprecation.warn(            Passing string to define callback is deprecated and will be removed            in Rails 5.1 without replacement..squish)
        end

        new chain.name, filter, kind, options, chain.config
      end
Register or log in to add new notes.