UNPKG

hubot-scripts

Version:

Allows you to opt in to a variety of scripts

49 lines (44 loc) 1.81 kB
# Description: # Rodent Motivation # # Set the environment variable HUBOT_SHIP_EXTRA_SQUIRRELS (to anything) # for additional motivation # # Dependencies: # None # # Configuration: # HUBOT_SHIP_EXTRA_SQUIRRELS # # Commands: # ship it - Display a motivation squirrel # # Author: # maddox squirrels = [ "http://img.skitch.com/20100714-d6q52xajfh4cimxr3888yb77ru.jpg", "https://img.skitch.com/20111026-r2wsngtu4jftwxmsytdke6arwd.png", "http://images.cheezburger.com/completestore/2011/11/2/aa83c0c4-2123-4bd3-8097-966c9461b30c.jpg", "http://images.cheezburger.com/completestore/2011/11/2/46e81db3-bead-4e2e-a157-8edd0339192f.jpg", "http://28.media.tumblr.com/tumblr_lybw63nzPp1r5bvcto1_500.jpg", "http://i.imgur.com/DPVM1.png", "http://gifs.gifbin.com/092010/1285616410_ship-launch-floods-street.gif", "http://d2f8dzk2mhcqts.cloudfront.net/0772_PEW_Roundup/09_Squirrel.jpg", "http://www.cybersalt.org/images/funnypictures/s/supersquirrel.jpg", "http://www.zmescience.com/wp-content/uploads/2010/09/squirrel.jpg", "http://img70.imageshack.us/img70/4853/cutesquirrels27rn9.jpg", "http://img70.imageshack.us/img70/9615/cutesquirrels15ac7.jpg", "http://dl.dropbox.com/u/602885/github/sniper-squirrel.jpg", "http://1.bp.blogspot.com/_v0neUj-VDa4/TFBEbqFQcII/AAAAAAAAFBU/E8kPNmF1h1E/s640/squirrelbacca-thumb.jpg", "http://dl.dropbox.com/u/602885/github/soldier-squirrel.jpg", "http://dl.dropbox.com/u/602885/github/squirrelmobster.jpeg", "http://f.cl.ly/items/0S1M2d1h0I132S082A05/flying-squirrel.gif" ] module.exports = (robot) -> # Enable a looser regex if environment variable is set if process.env.HUBOT_SHIP_EXTRA_SQUIRRELS regex = /ship(ping|z|s|ped)? it/i else regex = /ship it/i robot.hear regex, (msg) -> msg.send msg.random squirrels