class Kuroko2::Workflow::Notifier::Hipchat

def send_to_hipchat(message, color: 'green', notify: false, format: 'html')

def send_to_hipchat(message, color: 'green', notify: false, format: 'html')
  if notify_hipchat?
    hipchat[@definition.hipchat_room].send(USER_NAME, message, color: color, notify: notify, message_format: format)
  end
end