Method: Plugins#around

Defined in:
lib/plugins.rb

#around(subject, *args, &block) ⇒ Object



35
36
37
# File 'lib/plugins.rb', line 35

def around(subject, *args, &block)
  _around_stack.call(subject, *args) { |subject, *args| block.call(*args) }
end