315
316
317
318
319
320
321
322
323
324
325
326
327
|
# File 'fastlane/lib/fastlane/setup/setup.rb', line 315
def explain_concepts
UI.("fastlane lanes")
UI.message("fastlane uses a " + "`Fastfile`".yellow + " to store the automation configuration")
UI.message("Within that, you'll see different " + "lanes".yellow + ".")
UI.message("Each is there to automate a different task, like screenshots, code signing, or pushing new releases")
continue_with_enter
UI.("How to customize your Fastfile")
UI.message("Use a text editor of your choice to open the newly created Fastfile and take a look")
UI.message("You can now edit the available lanes and actions to customize the setup to fit your needs")
UI.message("To get a list of all the available actions, open " + "https://docs.fastlane.tools/actions".cyan)
continue_with_enter
end
|