Flowdock
method

build

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: Before
build(next_callback, user_callback, user_conditions, chain_config, filter) 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 120
        def self.build(next_callback, user_callback, user_conditions, chain_config, filter)
          halted_lambda = chain_config[:terminator]

          if chain_config.key?(:terminator) && user_conditions.any?
            halting_and_conditional(next_callback, user_callback, user_conditions, halted_lambda, filter)
          elsif chain_config.key? :terminator
            halting(next_callback, user_callback, halted_lambda, filter)
          elsif user_conditions.any?
            conditional(next_callback, user_callback, user_conditions)
          else
            simple next_callback, user_callback
          end
        end
Register or log in to add new notes.