class ControllerWithFilterClass::YieldingFilter

Public Class Methods

around(controller) { || ... } click to toggle source
# File actionpack/test/controller/filters_test.rb, line 895
def self.around(controller)
  yield
  raise After
end