Joined November 2012
·
Posted to
Delete ALL your installed gems
over 1 year
ago
Hi!
You can use this command :) I'm actually going to create a new protip for this.
du -h -d 0 `gem environment gemdir`
Achievements
176 Karma
5,447 Total ProTip Views

Forked
Have a project valued enough to be forked by someone else

24PullRequests Participant
Sent at least one pull request during the first 24 days of December 2013

Raven
Have at least one original repo where some form of shell script is the dominant language

Komodo Dragon
Have at least one original repo where Java is the dominant language

Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos

Nephila Komaci
Have at least one original repos where PHP is the dominant language

Charity
Fork and commit to someone's open source project in need

Python
Would you expect anything less? Have at least one original repo where Python is the dominant language

Mongoose 3
Have at least three original repos where Ruby is the dominant language

Mongoose
Have at least one original repo where Ruby is the dominant language
For not deleting master
git branch --merged | grep -v '^* master$' | grep -v '^ master$' | xargs git branch -d