Sha256: a170a13e5a131233919e2626241f3f36a4a9590920bacfd8657a9e8b015566f0
Contents?: true
Size: 237 Bytes
Versions: 9
Compression:
Stored size: 237 Bytes
Contents
module Fastlane module Actions class NotifyAction def self.run(params) require 'terminal-notifier' text = params.join(' ') TerminalNotifier.notify(text, title: 'fastlane') end end end end
Version data entries
9 entries across 9 versions & 1 rubygems