How to uninstall all ruby gems on Windows? Is it possible with single command?
I've found an elegant solution gem list | %{$_.split(' ')[0]} | %{gem uninstall -Iax $_ } and Windows Powershell
gem list | %{$_.split(' ')[0]} | %{gem uninstall -Iax $_ }
Windows Powershell