Class: Fastlane::Actions::PromptAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
74
75
76
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 74
def self.authors
["KrauseFx"]
end
|
.available_options ⇒ Object
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 47
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :text,
description: "The text that will be displayed to the user",
default_value: "Please enter some text: "),
FastlaneCore::ConfigItem.new(key: :ci_input,
description: "The default text that will be used when being executed on a CI service",
default_value: ''),
FastlaneCore::ConfigItem.new(key: :boolean,
description: "Is that a boolean question (yes/no)? This will add (y/n) at the end",
default_value: false,
is_string: false),
FastlaneCore::ConfigItem.new(key: :secure_text,
description: "Is that a secure text (yes/no)?",
default_value: false,
is_string: false),
FastlaneCore::ConfigItem.new(key: :multi_line_end_keyword,
description: "Enable multi-line inputs by providing an end text (e.g. 'END') which will stop the user input",
optional: true,
is_string: true)
]
end
|
.category ⇒ Object
102
103
104
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 102
def self.category
:misc
end
|
.description ⇒ Object
35
36
37
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 35
def self.description
"Ask the user for a value or for confirmation"
end
|
.details ⇒ Object
39
40
41
42
43
44
45
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 39
def self.details
[
"You can use `prompt` to ask the user for a value or to just let the user confirm the next step.",
"When this is executed on a CI service, the passed `ci_input` value will be returned.",
"This action also supports multi-line inputs using the `multi_line_end_keyword` option."
].join("\n")
end
|
.example_code ⇒ Object
82
83
84
85
86
87
88
89
90
91
92
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 82
def self.example_code
[
'changelog = prompt(text: "Changelog: ")',
'changelog = prompt(
text: "Changelog: ",
multi_line_end_keyword: "END"
)
crashlytics(notes: changelog)'
]
end
|
.is_supported?(platform) ⇒ Boolean
78
79
80
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 78
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
70
71
72
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 70
def self.output
[]
end
|
.return_type ⇒ Object
98
99
100
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 98
def self.return_type
:string
end
|
.run(params) ⇒ Object
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 4
def self.run(params)
if params[:boolean]
return params[:ci_input] unless UI.interactive?
return UI.confirm(params[:text])
end
UI.message(params[:text])
return params[:ci_input] unless UI.interactive?
if params[:multi_line_end_keyword]
end_tag = params[:multi_line_end_keyword]
UI.important("Submit inputs using \"#{params[:multi_line_end_keyword]}\"")
user_input = STDIN.gets(end_tag).chomp.gsub(end_tag, "").strip
else
if params[:secure_text]
user_input = STDIN.noecho(&:gets).chomp while (user_input || "").length == 0
else
user_input = STDIN.gets.chomp.strip while (user_input || "").length == 0
end
end
return user_input
end
|
.sample_return_value ⇒ Object
94
95
96
|
# File 'fastlane/lib/fastlane/actions/prompt.rb', line 94
def self.sample_return_value
"User Content\nWithNewline"
end
|