Class: Fastlane::Actions::PutsAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, author, available_options, details, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh
Class Method Details
.authors ⇒ Object
16
17
18
|
# File 'lib/fastlane/actions/puts.rb', line 16
def self.authors
["KrauseFx"]
end
|
.category ⇒ Object
35
36
37
|
# File 'lib/fastlane/actions/puts.rb', line 35
def self.category
:misc
end
|
.description ⇒ Object
12
13
14
|
# File 'lib/fastlane/actions/puts.rb', line 12
def self.description
"Prints out the given text"
end
|
.example_code ⇒ Object
29
30
31
32
33
|
# File 'lib/fastlane/actions/puts.rb', line 29
def self.example_code
[
'puts "Hi there"'
]
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)
UI.message 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
|