UNPKG

hubot-scripts

Version:

Allows you to opt in to a variety of scripts

21 lines (19 loc) 376 B
# Description: # Get a fortune # # Dependencies: # None # # Configuration: # None # # Commands: # hubot fortune me - Displays a super true fortune # # Author: # mrtazz module.exports = (robot) -> robot.respond /(fortune)( me)?/i, (msg) -> msg.http('http://www.fortunefortoday.com/getfortuneonly.php') .get() (err, res, body) -> msg.reply body