提交 541dbf41 编写于 作者: J José Valim

Merge pull request #5137 from avakhov/remove-skip-filter-block-param

Remove skip_filter block param
......@@ -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)
......@@ -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
......@@ -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.
......@@ -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.
......@@ -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.
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册