Sha256: f850257d41b78e99f4d1a0bf214d7a8b5e478aefe90489d13487556bb6f3063b
Contents?: true
Size: 432 Bytes
Versions: 1
Compression:
Stored size: 432 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 author "champo" end def self.is_supported?(platform) true end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fastlane-0.11.0 | lib/fastlane/actions/notify.rb |