Ruby Slack Notifier

Register at Slack.com Create a channel for your Team Configure a Custom Incoming WebHooks Integration Install the app on your phone (Optional, but it will receive push notifications) ##Replace Your Unique Webhook URL accordingly (In @@uri)! root@mikrodash:/opt/dashing/rmm_hud# cat jobs/SlackNotifier.rb require ‘net/http’ require ‘json’ require ‘uri’ class SlackNotifier @@uri = URI.parse(“PASTE_URI_HERE”) @@header = {‘Content-Type’ => “text/json”}[…]