Last active
April 28, 2016 01:27
-
-
Save kiryuxxu/73cba754fa59d827a7363c891f12c2e5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "===== Mac =====" | |
sysctl hw.model | |
sw_vers -productVersion | |
echo "\n===== Xcode =====" | |
xcodebuild -version | |
xcode-select -p | |
echo "\n===== gcc =====" | |
gcc -v | |
echo "\n===== Ruby =====" | |
which ruby | |
ruby --version | |
echo "\n===== gem =====" | |
which gem | |
gem --version | |
echo "\n ===== rbenv =====" | |
which rbenv | |
rbenv --version | |
rbenv versions | |
echo "\n===== bundle =====" | |
which bundle | |
bundle --version | |
bundle list | |
echo "\n===== pod =====" | |
which pod | |
pod --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment