Flowdock
method

_compile_filter

Importance_2
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActiveSupport::Callbacks::Callback

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.0.2) is shown here.

_compile_filter(filter) private

Filters support:

Arrays::  Used in conditions. This is used to specify
          multiple conditions. Used internally to
          merge conditions from skip_* filters.
Symbols:: A method to call.
Strings:: Some content to evaluate.
Procs::   A proc to call with the object.
Objects:: An object with a <tt>before_foo</tt> method on it to call.

All of these objects are compiled into methods and handled the same after this point:

Arrays::  Merged together into a single filter.
Symbols:: Already methods.
Strings:: class_eval'ed into methods.
Procs::   define_method'ed into methods.
Objects::
  a method is created that calls the before_foo method
  on the object.
Show source
Register or log in to add new notes.