module AbstractController::Callbacks::ClassMethods

def _insert_callbacks(callbacks, block = nil)

* options - A hash of options to be used when adding the callback
* name - The callback to be added
==== Block Parameters

* block - A proc that should be added to the callbacks.
options hash as the last parameter.
* callbacks - An array of callbacks, with an optional
==== Parameters

the normalization across several methods that use it.
then call the block with each callback. This allows us to abstract
Take callback names and an optional callback proc, normalize them,
def _insert_callbacks(callbacks, block = nil)
  options = callbacks.extract_options!
  _normalize_callback_options(options)
  callbacks.push(block) if block
  callbacks.each do |callback|
    yield callback, options
  end
end

def _normalize_callback_option(options, from, to) # :nodoc:

:nodoc:
def _normalize_callback_option(options, from, to) # :nodoc:
  if from = options[from]
    from = Array(from).map {|o| "action_name == '#{o}'"}.join(" || ")
    options[to] = Array(options[to]).unshift(from)
  end
end

def _normalize_callback_options(options)

* except - The callback should be run for all actions except this action
* only - The callback should be run only for this action
==== Options

:if => proc {|c| c.action_name == "index" }.
The basic idea is that :only => :index gets converted to
:unless and :if options of ActiveSupport::Callbacks.
If :only or :except are used, convert the options into the
def _normalize_callback_options(options)
  _normalize_callback_option(options, :only, :if)
  _normalize_callback_option(options, :except, :unless)
end

def skip_action_callback(*names)

using #skip_filter
impossible to skip a callback defined using an anonymous proc
callbacks. Note that skipping uses Ruby equality, so it's
* names - A list of valid names that could be used for
==== Parameters

Aliased as skip_filter.
Skip before, after, and around action callbacks matching any of the names
def skip_action_callback(*names)
  skip_before_action(*names)
  skip_after_action(*names)
  skip_around_action(*names)
end