Last active
April 8, 2016 09:53
-
-
Save carlossless/51b645d8af4e6d2d10de42b607337bfb to your computer and use it in GitHub Desktop.
Uninstall All Versions of CocoaPods and Dependencies
This file contains hidden or 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 | |
gem uninstall cocoapods -a -x | |
gem uninstall cocoapods-core -a | |
gem uninstall cocoapods-deintegrate -a | |
gem uninstall cocoapods-downloader -a | |
gem uninstall cocoapods-plugins -a | |
gem uninstall cocoapods-search -a | |
gem uninstall cocoapods-stats -a | |
gem uninstall cocoapods-trunk -a | |
gem uninstall cocoapods-try -a | |
rm -rf ~/.cocoapods/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment