Skip to content

Instantly share code, notes, and snippets.

@hudsonfoo
Forked from psi/popcorn.coffee
Last active November 13, 2015 00:41
Show Gist options
  • Save hudsonfoo/9e8423f7a50c375addd4 to your computer and use it in GitHub Desktop.
Save hudsonfoo/9e8423f7a50c375addd4 to your computer and use it in GitHub Desktop.
# Hubot likes popcorn
#
# brb, making popcorn
module.exports = (robot) ->
robot.hear /popcorn/i, (msg) ->
if Math.floor(Math.random() * 2) == 0
msg.send 'https://media.giphy.com/media/zQxnrdxitCRkQ/giphy.gif'
else
msg.send 'https://media.giphy.com/media/GjYjLvGErsggg/giphy.gif'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment