# Description:
#   I'm going to get you, sucka
#
# Dependencies:
#   None
#
# Configuration:
#   None
#
# Commands:
#   git - hubot says 'ima git you sucka'
#
# Author:
#   samn

module.exports = (robot) ->
  robot.hear /git/, (msg) ->
    if Math.random() < 0.1 then msg.reply 'ima git you sucka'
