UNPKG

hubot-scripts

Version:

Allows you to opt in to a variety of scripts

22 lines (21 loc) 419 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.herokuapp.com/generate_ascii") .query(s: msg.match[2].split(' ').join(' ')) .get() (err, res, body) -> msg.send body