Class: Fastlane::AutoComplete
- Inherits:
-
Object
- Object
- Fastlane::AutoComplete
- Defined in:
- lib/fastlane/auto_complete.rb
Overview
Enable tab auto completion
Class Method Summary collapse
Class Method Details
.execute ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/fastlane/auto_complete.rb', line 6 def self.execute fastlane_conf_dir = "~/.fastlane" confirm = UI.confirm "This will copy a shell script into #{fastlane_conf_dir} that provides the command tab completion. Sound good?" return unless confirm # create the ~/.fastlane directory fastlane_conf_dir = File. fastlane_conf_dir FileUtils.mkdir_p fastlane_conf_dir # then copy all of the completions files into it from the gem completion_script_path = File.join(Fastlane::ROOT, 'lib', 'assets', 'completions') FileUtils.cp_r completion_script_path, fastlane_conf_dir UI.success "Copied! To use auto complete for fastlane, add the following line to your favorite rc file (e.g. ~/.bashrc)" UI.important " . ~/.fastlane/completions/completion.sh" UI.success "Don't forget to source that file in your current shell! 🐚" end |