bash-it/plugins/ruby.bash

3 lines
93 B
Bash

function remove_gem {
gem list | grep $1 | awk '{ print $1; }' | xargs sudo gem uninstall
}