class Guard::Interactor
def toggle_notification
Toggle the system notifications on/off
def toggle_notification if ENV['GUARD_NOTIFY'] == 'true' ::Guard::UI.info 'Turn off notifications' ::Guard::Notifier.turn_off else ::Guard::Notifier.turn_on end end