Class: Fastlane::Actions::PromptAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/prompt.rb

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, return_value, sh, step_text

Class Method Details

.authorsObject



63
64
65
# File 'lib/fastlane/actions/prompt.rb', line 63

def self.authors
  ["KrauseFx"]
end

.available_optionsObject



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/fastlane/actions/prompt.rb', line 40

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :text,
                                 description: "The text that will be displayed to the user",
                                 default_value: "Please enter a 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: :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

.descriptionObject



28
29
30
# File 'lib/fastlane/actions/prompt.rb', line 28

def self.description
  "Ask the user for a value or for confirmation"
end

.detailsObject



32
33
34
35
36
37
38
# File 'lib/fastlane/actions/prompt.rb', line 32

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

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/fastlane/actions/prompt.rb', line 67

def self.is_supported?(platform)
  true
end

.outputObject



59
60
61
# File 'lib/fastlane/actions/prompt.rb', line 59

def self.output
  []
end

.run(params) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/fastlane/actions/prompt.rb', line 4

def self.run(params)
  params[:text] += " (y/n)" if params[:boolean]
  UI.message(params[:text])

  return params[:ci_input] if Helper.is_ci?

  if params[:multi_line_end_keyword]
    # Multi line
    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
    # Standard one line input
    user_input = STDIN.gets.chomp.strip while (user_input || "").length == 0
  end

  user_input = user_input.casecmp('y').zero? if params[:boolean]
  return user_input
end