Sha256: 0c11c81ecfd9eeb75dcea8a3b94ff3e850675904f4c04781b42f6ff301077e89
Contents?: true
Size: 437 Bytes
Versions: 71
Compression:
Stored size: 437 Bytes
Contents
module Fastlane module Actions class NotifyAction < Action def self.run(params) require 'terminal-notifier' text = params.join(' ') TerminalNotifier.notify(text, title: 'fastlane') end def self.description "Shows a Mac OS X notification" end def self.author "champo" end def self.is_supported?(platform) true end end end end
Version data entries
71 entries across 71 versions & 1 rubygems