Skip to content

Instantly share code, notes, and snippets.

@infinitecontext
Created October 31, 2022 12:20
Show Gist options
  • Select an option

  • Save infinitecontext/f1a8d85b90c1ffad6876a8c13bc7e43a to your computer and use it in GitHub Desktop.

Select an option

Save infinitecontext/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