Class: Fastlane::Actions::PutsAction
Class Method Summary
collapse
action_name, author, available_options, details, output, sh
Class Method Details
.authors ⇒ Object
16
17
18
|
# File 'lib/fastlane/actions/puts.rb', line 16
def self.authors
["KrauseFx"]
end
|
.description ⇒ Object
12
13
14
|
# File 'lib/fastlane/actions/puts.rb', line 12
def self.description
"Prints out the given text"
end
|
.is_supported?(platform) ⇒ Boolean
20
21
22
|
# File 'lib/fastlane/actions/puts.rb', line 20
def self.is_supported?(platform)
true
end
|
.run(params) ⇒ Object
4
5
6
|
# File 'lib/fastlane/actions/puts.rb', line 4
def self.run(params)
Helper.log.info params.join(' ')
end
|
.step_text ⇒ Object
We don’t want to show this as step
25
26
27
|
# File 'lib/fastlane/actions/puts.rb', line 25
def self.step_text
nil
end
|