Skip to content

Instantly share code, notes, and snippets.

@rowanmanning
Last active December 17, 2015 20:39
Show Gist options
  • Save rowanmanning/5669555 to your computer and use it in GitHub Desktop.
Save rowanmanning/5669555 to your computer and use it in GitHub Desktop.
Hubot Animated Facepalm
# Description:
# None
#
# Dependencies:
# None
#
# Configuration:
# None
#
# Commands:
# facepalm - Illustrate a facepalm
#
# Author:
# rowanmanning
facepalms = [
"http://replygif.net/i/639.gif",
"http://replygif.net/i/968.gif",
"http://replygif.net/i/133.gif",
"http://replygif.net/i/153.gif",
"http://replygif.net/i/148.gif",
"http://replygif.net/i/1012.gif",
"http://replygif.net/i/197.gif",
"http://replygif.net/i/792.gif",
"http://replygif.net/i/661.gif",
"http://replygif.net/i/586.gif"
]
module.exports = (robot) ->
robot.hear /face[ \-]?palm/i, (msg) ->
msg.send msg.random facepalms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment