-
-
Notifications
You must be signed in to change notification settings - Fork 189
TextMate
Kevin Sjöberg edited this page Sep 2, 2013
·
1 revision
To make TextMate leverage chruby, point TM_RUBY
to a shim.
#!/bin/sh
source /usr/local/share/chruby/chruby.sh
source /usr/local/share/chruby/auto.sh
exec ruby "$@"
#!/bin/sh
source /usr/local/share/chruby/chruby.sh
chruby ruby
exec ruby "$@"
Note: Make sure the shim is executable by running chmod +x /path/to/shim
.