Method: Plugins::AroundStack::AroundWrapper#method_missing

Defined in:
lib/plugins/around_stack.rb

#method_missing(meth, *args, &block) ⇒ Object

[View source]

57
58
59
60
# File 'lib/plugins/around_stack.rb', line 57

def method_missing(meth, *args, &block)
  super unless scope
  scope.send(meth, *args, &block)
end