Gitiles
Code Review
Sign In
source.supwisdom.com
/
common
/
bash_it
/
55e77deac19ce82831a7d873d8459b0bfb59391e
/
.
/
plugins
/
available
/
ruby.plugin.bash
blob: 11e632fca73536069f906aa73aef04754fd1f68c [
file
] [
log
] [
blame
]
cite about
-
plugin
about
-
plugin
'adds "remove_gem" function'
function
remove_gem
{
about
'removes installed gem'
param
'1: installed gem name'
group ruby
gem list
|
grep $1
|
awk
'{ print $1; }'
|
xargs sudo gem uninstall
}