Skip to content

Instantly share code, notes, and snippets.

@bonyiii
Created June 21, 2011 06:43
Show Gist options
  • Select an option

  • Save bonyiii/1037357 to your computer and use it in GitHub Desktop.

Select an option

Save bonyiii/1037357 to your computer and use it in GitHub Desktop.
delete all gem
'gem list | cut -d" " -f1 | xargs gem uninstall -aIx'
# vagy
for I in $(gem list | cut -d" " -f1); do gem uninstall -aIx $I; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment