class Slack::Notifier

def ping message, options={}

def ping message, options={}
  if message.is_a?(Hash)
    options = message
  else
    options[:text] = message
  end
  post options
end