Flowdock
method

_update_filter

Importance_0
v3.0.0 - 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 153
      def _update_filter(filter_options, new_options)
        filter_options[:if].push(new_options[:unless]) if new_options.key?(:unless)
        filter_options[:unless].push(new_options[:if]) if new_options.key?(:if)
      end
Register or log in to add new notes.