Skip to content

Instantly share code, notes, and snippets.

@kklimuk
Last active October 10, 2017 04:04
Show Gist options
  • Save kklimuk/dc29bdbbe710006e72c5a5fa3c8915ff to your computer and use it in GitHub Desktop.
Save kklimuk/dc29bdbbe710006e72c5a5fa3c8915ff to your computer and use it in GitHub Desktop.
module Notifier
 def self.notify(id, message)
  SlackClient.new.notify(id, prettify(message))
 end
def self.prettify(message)
 HTMLCleaner.clean(message.strip)
 end
end
Notifier.notify(‘@kirill’, ‘hello, <strong>world</strong>’)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment