Flowdock
method

_update_filter

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: ActiveSupport::Callbacks::Callback
_update_filter(filter_options, new_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 143
      def _update_filter(filter_options, new_options)
        filter_options[:if].concat(Array(new_options[:unless])) if new_options.key?(:unless)
        filter_options[:unless].concat(Array(new_options[:if])) if new_options.key?(:if)
      end
Register or log in to add new notes.