class Guard::Notifier::Growl
def notify(message, opts = {})
(**opts)- 
        password(String) -- the password used for remote
- 
        host(String) -- the hostname or IP address to which to
- 
        priority(String, Integer) -- specify an int or named key
- 
        sticky(Boolean) -- make the notification sticky
- 
        image(String) -- the path to the notification image
- 
        title(String) -- the notification title
- 
        type(String) -- the notification type. Either 'success',
Parameters:
- 
        opts(Hash) -- additional notification library options
- 
        message(String) -- the notification message body
def notify(message, opts = {}) super opts.delete(:type) self.class.require_gem_safely opts = DEFAULTS.merge(opts).merge(name: 'Guard') ::Growl.notify(message, opts) end