Method: Chewy::Strategy#wrap

Defined in:
lib/chewy/strategy.rb

#wrap(name) ⇒ Object



58
59
60
61
62
63
# File 'lib/chewy/strategy.rb', line 58

def wrap(name)
  stack = push(name)
  yield
ensure
  pop if stack
end