Created
December 3, 2015 14:28
-
-
Save ElliottLandsborough/5b073b161938b478e951 to your computer and use it in GitHub Desktop.
Hubot: Let the channel know that it is 13.37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Description: | |
| # 1337 Notify | |
| # | |
| # Dependencies: | |
| # "cron": "^1.0.9", | |
| # "time": "^0.11.3", | |
| # | |
| # Configuration: | |
| # None | |
| # | |
| # Commands: | |
| # None | |
| # | |
| # Author: | |
| # elliott landsborough | |
| module.exports = (robot) -> | |
| cronJob = require('cron').CronJob | |
| new cronJob('0 37 13 * * *', everyMinute(robot), null, true) | |
| everyMinute = (robot) -> | |
| -> robot.messageRoom '#help', '13.37' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment