Sha256: b33241453c719515ab5dc8692ebd8d890a8be4b95c56c6fff66f6905acc802a1
Contents?: true
Size: 875 Bytes
Versions: 9
Compression:
Stored size: 875 Bytes
Contents
module Match class Setup def run(path) template = File.read("#{Helper.gem_path('match')}/lib/assets/MatchfileTemplate") UI.important "Please create a new, private git repository" UI.important "to store the certificates and profiles there" url = ask("URL of the Git Repo: ") template.gsub!("[[GIT_URL]]", url) File.write(path, template) UI.success "Successfully created '#{path}'. You can open the file using a code editor." UI.important "You can now run `match development`, `match adhoc` and `match appstore`" UI.message "On the first run for each environment it will create the provisioning profiles and" UI.message "certificates for you. From then on, it will automatically import the existing profiles." UI.message "For more information visit https://github.com/fastlane/match" end end end
Version data entries
9 entries across 9 versions & 1 rubygems