update plugin management

This commit is contained in:
Erich Smith
2012-05-13 08:37:31 -04:00
parent 8051a8520e
commit 08e439c4f0
18 changed files with 198 additions and 167 deletions

View File

@@ -4,7 +4,7 @@ about-plugin 'adds "remove_gem" function'
function remove_gem {
about 'removes installed gem'
param '1: installed gem name'
group ruby
group 'ruby'
gem list | grep $1 | awk '{ print $1; }' | xargs sudo gem uninstall
}