# File lib/guard/notifiers/file_notifier.rb, line 38 def notify(type, title, message, image, options = { }) if options[:path] format = options.fetch(:format, DEFAULTS[:format]) write(options[:path], format % [type, title, message]) else ::Guard::UI.error ':file notifier requires a :path option' end end