Sha256: 3fd5c6146ca2af5372be9f901a84be1c3509232e613208c76a36ff3bb17a1a8f
Contents?: true
Size: 600 Bytes
Versions: 30
Compression:
Stored size: 600 Bytes
Contents
module Fastlane module Actions class NotifyAction < Action def self.run(params) require 'terminal-notifier' UI.important("It's recommended to use the new 'notification' method instead of 'notify'") text = params.join(' ') TerminalNotifier.notify(text, title: 'fastlane') end def self.description "Shows a Mac OS X notification" end def self.author ["champo", "KrauseFx"] end def self.available_options end def self.is_supported?(platform) Helper.mac? end end end end
Version data entries
30 entries across 30 versions & 1 rubygems