Created
May 19, 2010 17:53
-
-
Save defunkt/406608 to your computer and use it in GitHub Desktop.
My Ruby Setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# directory structure of /ruby | |
$ tree -L 1 /ruby | |
/ruby | |
|-- default -> ree-1.8.7 | |
|-- ree-1.8.7 | |
`-- ruby-1.9.1-p376 | |
3 directories, 0 files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ruby | |
export RUBY_PATH=/ruby/default | |
export PATH=$RUBY_PATH/bin:$PATH | |
# gem | |
alias gemi='gem install --no-rdoc --no-ri' | |
export GEM_HOME="$RUBY_PATH/gems" | |
export GEM_PATH="$GEM_HOME" | |
export PATH="$RUBY_PATH/gems/bin:$PATH" | |
# rpg | |
RPGPATH=$RUBY_PATH/default/rpg | |
RPGSTALETIME='2 weeks' | |
# rip | |
export RIPDIR=$RUBY_PATH/rip | |
eval `rip-config` | |
eval `rip-completion` | |
(rip envs | grep system) > /dev/null 2>&1 && | |
rip-push system | |
# defaults | |
export RUBYOPT="-rpp" | |
export RUBYLIB="$RUBYLIB:./lib/:./test/" |
Also 1.9.1-p376 is old now. Use 1.9.2-head instead.
rvm doesn't work for me.
1.9.1-p376 is the stable version listed on http://www.ruby-lang.org/en/downloads/
I don't run edge software unless it's my own.
I've given up on rvm as well. I actually got program suffixes working for 1.9 (ruby19, rake19). It's much easier without rubygems ;)
I should probably publish my edge mutiruby on homebrew + rpg + rip setup somewhere.
Btw defunkt I liked simplicity in your Ruby setup. Currently finding rvm useful otherwise I would definitely like to have Ruby setup like you and it's really nice!
I'm curious to know why RVM wouldn't work for you.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
why don't you use just rvm? rvm is awesome!