module Ccp::Receivers::Aroundable

Public Instance Methods

execute(cmd) click to toggle source
Calls superclass method
# File lib/ccp/receivers/aroundable.rb, line 4
def execute(cmd)
  cmd.must.duck!("before") {}
  super
ensure
  cmd.must.duck!("after") {}
end