Sha256: 9e18983676ef82399aef75f2b8622a22de32c1b5936274141608fd534bbe404c
Contents?: true
Size: 574 Bytes
Versions: 60
Compression:
Stored size: 574 Bytes
Contents
#!/bin/zsh _fastlane_complete() { local word completions file word="$1" # look for Fastfile either in this directory or fastlane/ then grab the lane names if [[ -e "Fastfile" ]] then file="Fastfile" elif [[ -e "fastlane/Fastfile" ]] then file="fastlane/Fastfile" elif [[ -e ".fastlane/Fastfile" ]] then file=".fastlane/Fastfile" else return 1 fi # parse 'beta' out of 'lane :beta do', etc completions="$(sed -En 's/^[ ]*lane +:([^ ]+).*$/\1/p' "$file")" completions="$completions update_fastlane" reply=( "${=completions}" ) }
Version data entries
60 entries across 60 versions & 4 rubygems