Skip to content

Instantly share code, notes, and snippets.

@chrismoutray
Created June 8, 2014 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismoutray/860e1d52d1f702fd82c7 to your computer and use it in GitHub Desktop.
Save chrismoutray/860e1d52d1f702fd82c7 to your computer and use it in GitHub Desktop.
Uninstall all gems on Windows
Windows Powershell
-- to remove gems
gem list | %{$_.split(' ')[0]} | %{gem uninstall -Iax $_ }
-- add back important ones
gem install bundler json minitest rake rdoc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment