Tool for checking (obviously) whether your computer is ready for iOS development. The main purpose of this script is to give it to workshop attendees, so you can peacefully jump straight to workshops without any additional hustle around their computers to check all necessary tools 🙌.
Right now this script is checking:
- Presence of Xcode
- Version of Xcode
- Presence of git
- Version of ruby
- Presence of CocoaPods
To simply run this command you have to:
curl -s https://raw.githubusercontent.com/cojoj/checker/master/checker.sh | sh
Of course you can clone repository, modify something and adjust this script to your needs. First step int customisation may be versions of software you want to check. So far there are only two of those:
MIN_XCODE_VERSION
MIN_RUBY_VERSION
Special thanks to Dennis Williamson for this cleaver solution, which I've used for version comparison. 👍