module ActiveService::Runner::InstaceMethods

Public Instance Methods

run_method(sym, *args, &block) click to toggle source
# File lib/active_service/runner.rb, line 26
def run_method(sym, *args, &block)
  self.class.run_before_hooks(self, sym)

  result = send(sym, *args, &block)

  self.class.run_after_hooks(self, sym)

  result
end