Skip to content

Instantly share code, notes, and snippets.

@apas
Created December 16, 2014 11:32
Show Gist options
  • Save apas/5c294a767a5f957d21a3 to your computer and use it in GitHub Desktop.
Save apas/5c294a767a5f957d21a3 to your computer and use it in GitHub Desktop.
hubot food delivery script
# Description:
# Slackbot knows what you secretly crave for when you're not sure.
#
# Config:
# none
#
# Commands:
# $ what should i order? - displays random suggestion
#
# Author:
# @apas
food = [
"chinese",
"pho",
"mickey-d's",
"burger",
"pizza",
"sushi",
"indian",
"burrito",
"italian"
]
module.exports = (robot) ->
robot.hear /what should i order?/i, (msg) ->
msg.send msg.random food
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment