This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| # 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 |