Class: Fastlane::Actions::NotifyAction

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/actions/notify.rb

Class Method Summary collapse

Class Method Details

.run(params) ⇒ Object



4
5
6
7
8
9
# File 'lib/fastlane/actions/notify.rb', line 4

def self.run(params)
  require 'terminal-notifier'

  text = params.join(' ')
  TerminalNotifier.notify(text, title: 'fastlane')
end