UNPKG

hubot-scripts

Version:

Allows you to opt in to a variety of scripts

23 lines (21 loc) 395 B
# Description: # ASCII art # # Dependencies: # None # # Configuration: # None # # Commands: # hubot ascii me <text> - Show text in ascii art # # Author: # atmos module.exports = (robot) -> robot.respond /ascii( me)? (.+)/i, (msg) -> msg .http("http://asciime.heroku.com/generate_ascii") .query(s: msg.match[2]) .get() (err, res, body) -> msg.send body