Skip to content

Instantly share code, notes, and snippets.

View demophoon's full-sized avatar
🌮
🔔

Britt Gresham demophoon

🌮
🔔
View GitHub Profile
@IanVaughan
IanVaughan / uninstall_gems.sh
Created June 9, 2012 20:37
Uninstall all rbenv gems
#!/usr/bin/env bash
uninstall() {
list=`gem list --no-versions`
for gem in $list; do
gem uninstall $gem -aIx
done
gem list
gem install bundler
}