module OnContainer::Common::SafePerformable

Public Class Methods

included(base) click to toggle source
# File lib/on_container/common/safe_performable.rb, line 8
def self.included(base)
  base.include OnContainer::Common::Performable
  base.extend ClassMethods
end

Public Instance Methods

perform(*args, **kargs) click to toggle source
# File lib/on_container/common/safe_performable.rb, line 13
def perform(*args, **kargs)
  perform!(*args, **kargs)
rescue
  false
end