Class: Fastlane::Actions::NotifyAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, authors, details, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text
Class Method Details
.author ⇒ Object
16
17
18
|
# File 'lib/fastlane/actions/notify.rb', line 16
def self.author
["champo", "KrauseFx"]
end
|
.available_options ⇒ Object
20
21
|
# File 'lib/fastlane/actions/notify.rb', line 20
def self.available_options
end
|
.category ⇒ Object
31
32
33
|
# File 'lib/fastlane/actions/notify.rb', line 31
def self.category
:deprecated
end
|
.description ⇒ Object
12
13
14
|
# File 'lib/fastlane/actions/notify.rb', line 12
def self.description
"Shows a macOS notification - use `notification` instead"
end
|
.example_code ⇒ Object
27
28
29
|
# File 'lib/fastlane/actions/notify.rb', line 27
def self.example_code
[]
end
|
.is_supported?(platform) ⇒ Boolean
23
24
25
|
# File 'lib/fastlane/actions/notify.rb', line 23
def self.is_supported?(platform)
Helper.mac?
end
|
.run(params) ⇒ Object
4
5
6
7
8
9
10
|
# File 'lib/fastlane/actions/notify.rb', line 4
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
|