Help files. Added the rest of bash it

This commit is contained in:
Robert R Evans
2010-10-02 15:07:29 -07:00
parent a7d1ee0c02
commit a4d0242dd0
20 changed files with 2341 additions and 0 deletions

16
plugins/rvm.plugin.bash Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
switch () {
rvm $1
local v=$(rvm_version)
rvm wrapper $1 textmate
echo "Switch to Ruby version: "$v
}
rvm_default () {
rvm --default $1
rvm wrapper $1 textmate
}
function rvm_version () {
ruby --version
}