Skip to content

Instantly share code, notes, and snippets.

@shady1440
Created October 31, 2022 12:20
Show Gist options
  • Save shady1440/f1a8d85b90c1ffad6876a8c13bc7e43a to your computer and use it in GitHub Desktop.
Save shady1440/f1a8d85b90c1ffad6876a8c13bc7e43a to your computer and use it in GitHub Desktop.
Remove Cocoapods from gem
#!/bin/bash
for i in $( gem list --local --no-version | grep cocoapods );
do
gem uninstall $i;
done
rm -rf ~/.cocoapods/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment