陈斌彬的技术博客

Stay foolish,stay hungry

Xcode - Install

Build Status Coverage Status Gem Version Code Climate

Install and update your Xcodes automatically.

$ gem install xcode-install
$ xcode-install install 6.3

Installation

$ gem install xcode-install

Usage

XcodeInstall needs environment variables with your credentials to access the Apple Developer Center, they are stored using the CredentialsManager of fastlane:

XCODE_INSTALL_USER
XCODE_INSTALL_PASSWORD

To list available versions:

$ xcode-install list
6.0.1
6.1
6.1.1
6.2
6.3

By default, only the latest major version is listed.

To install a certain version, simply:

$ xcode-install install 6.3
###########################################################               82.1%
######################################################################## 100.0%
Please authenticate for Xcode installation...

Xcode 6.3
Build version 6D570

This will download and install that version of Xcode. It will also be automatically selected.

Note: GMs and beta versions usually have special names, e.g.

$ xcode-install list
7 GM seed
7.1 beta

they have to be installed using the full name, e.g. xcode-install install '7 GM seed'.

Command Line Tools

XcodeInstall can also install Xcode’s Command Line Tools by calling xcode-install install-cli-tools.

Limitations

Unfortunately, the installation size of Xcodes downloaded will be bigger than when downloading via the Mac App Store, see #10 and feel free to dupe the radar. 📡

XcodeInstall automatically installs additional components so that it is immediately usable from the commandline. Unfortunately, Xcode will load third-party plugins even in that situation, which leads to a dialog popping up. Feel free to dupe the radar. 📡

XcodeInstall uses the Spotlight index to locate installed versions of Xcode. If you use it while indexing is happening, it might show inaccurate results and it will not be able to see installed versions on unindexed volumes.

Thanks

This downloading script which has been used for some inspiration, also this for doing the installation. Additionally, many thanks to everyone who has contributed to this project, especially @henrikhodne and @lacostej for making XcodeInstall C extension free.

Contributing

  1. Fork it ( https://github.com/neonichu/xcode-install/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request