class SimplyGenius::Atmos::IpcActions::Notify

Public Class Methods

new() click to toggle source
# File lib/simplygenius/atmos/ipc_actions/notify.rb, line 12
def initialize()
end

Public Instance Methods

execute(**opts) click to toggle source
# File lib/simplygenius/atmos/ipc_actions/notify.rb, line 15
def execute(**opts)

  result = {
      'stdout' => '',
      'success' => ''
  }

  return result if Atmos.config["atmos.ipc.notify.disable"].to_s == "true"
  return notify(**opts)

end