# File lib/guard/notifiers/growl_notify.rb, line 77
      def notify(type, title, message, image, options = { })
        require 'growl_notify'

        ::GrowlNotify.send_notification(DEFAULTS.merge(options).merge({
            :application_name => 'Guard',
            :with_name        => type,
            :title            => title,
            :description      => message,
            :icon             => image
        }))
      end