UNPKG

hubot-scripts

Version:

Allows you to opt in to a variety of scripts

43 lines (39 loc) 647 B
# Description: # Watch your language! # # Dependencies: # None # # Configuration: # None # # Commands: # # Author: # whitman module.exports = (robot) -> words = [ 'arse', 'ass', 'bastard', 'bitch', 'bugger', 'bollocks', 'bullshit', 'cock', 'cunt', 'damn', 'damnit', 'dick', 'douche', 'fag', 'fuck', 'fucked', 'fucking', 'piss', 'shit', 'wank' ] regex = new RegExp('(?:^|\\s)(' + words.join('|') + ')(?:\\s|\\.|\\?|!|$)', 'i'); robot.hear regex, (msg) -> msg.send 'You have been fined one credit for a violation of the verbal morality statute.'