Skip to content

Instantly share code, notes, and snippets.

@ismaels
Created November 14, 2012 01:39
Show Gist options
  • Save ismaels/4069692 to your computer and use it in GitHub Desktop.
Save ismaels/4069692 to your computer and use it in GitHub Desktop.
Desinstalar todas as gems
#!/bin/bash
for x in `gem list --no-versions`; do gem uninstall $x; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment