class Guard::Internals::Session

def notify_options

def notify_options
  names = @guardfile_notifier_options.keys
  return { notify: false } if names.include?(:off)
  {
    notify: @options[:notify],
    notifiers: @guardfile_notifier_options
  }
end