Skip to content

Commit

Permalink
Merge pull request #5137 from avakhov/remove-skip-filter-block-param
Browse files Browse the repository at this point in the history
Remove skip_filter block param
  • Loading branch information
josevalim committed Feb 23, 2012
2 parents 3f8dc55 + 9e1b2d8 commit 541dbf4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions actionpack/lib/abstract_controller/callbacks.rb
Expand Up @@ -46,7 +46,7 @@ def _normalize_callback_options(options)
# callbacks. Note that skipping uses Ruby equality, so it's
# impossible to skip a callback defined using an anonymous proc
# using #skip_filter
def skip_filter(*names, &blk)
def skip_filter(*names)
skip_before_filter(*names)
skip_after_filter(*names)
skip_around_filter(*names)
Expand All @@ -64,7 +64,7 @@ def skip_filter(*names, &blk)
# ==== Block Parameters
# * <tt>name</tt> - The callback to be added
# * <tt>options</tt> - A hash of options to be used when adding the callback
def _insert_callbacks(callbacks, block)
def _insert_callbacks(callbacks, block = nil)
options = callbacks.last.is_a?(Hash) ? callbacks.pop : {}
_normalize_callback_options(options)
callbacks.push(block) if block
Expand All @@ -90,7 +90,7 @@ def _insert_callbacks(callbacks, block)
##
# :method: skip_before_filter
#
# :call-seq: skip_before_filter(names, block)
# :call-seq: skip_before_filter(names)
#
# Skip a before filter. See _insert_callbacks for parameter details.

Expand Down Expand Up @@ -118,7 +118,7 @@ def _insert_callbacks(callbacks, block)
##
# :method: skip_after_filter
#
# :call-seq: skip_after_filter(names, block)
# :call-seq: skip_after_filter(names)
#
# Skip an after filter. See _insert_callbacks for parameter details.

Expand Down Expand Up @@ -146,7 +146,7 @@ def _insert_callbacks(callbacks, block)
##
# :method: skip_around_filter
#
# :call-seq: skip_around_filter(names, block)
# :call-seq: skip_around_filter(names)
#
# Skip an around filter. See _insert_callbacks for parameter details.

Expand Down Expand Up @@ -179,8 +179,8 @@ def prepend_#{filter}_filter(*names, &blk)
# Skip a before, after or around filter. See _insert_callbacks
# for details on the allowed parameters.
def skip_#{filter}_filter(*names, &blk) # def skip_before_filter(*names, &blk)
_insert_callbacks(names, blk) do |name, options| # _insert_callbacks(names, blk) do |name, options|
def skip_#{filter}_filter(*names) # def skip_before_filter(*names)
_insert_callbacks(names) do |name, options| # _insert_callbacks(names) do |name, options|
skip_callback(:process_action, :#{filter}, name, options) # skip_callback(:process_action, :before, name, options)
end # end
end # end
Expand Down

0 comments on commit 541dbf4

Please sign in to comment.